*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Segoe UI;
}

body{
    height:100vh;
    overflow:hidden;

    display:flex;
    justify-content:center;
    align-items:center;

    background:
    linear-gradient(
        135deg,
        #5b86e5,
        #36d1dc
    );
}

.container{
    width:80%;
    max-width:700px;
    height:88vh;

    background:
    rgba(255,255,255,0.15);

    backdrop-filter:blur(15px);

    border-radius:20px;

    padding:20px;

    color:white;
}

header{
    text-align:center;
    margin-bottom:15px;
}

.logo{
    font-size:45px;
    margin-bottom:10px;
}

header h1{
    font-size:28px;
}

header p{
    margin-top:5px;
}

.main{
    display:flex;
    gap:15px;
}

.left{
    flex:1;
}

label{
    font-weight:bold;
}

.input-box{
    display:flex;
    background:white;
    border-radius:12px;
    overflow:hidden;
    margin-top:10px;
}

.input-box input{
    flex:1;
    border:none;
    outline:none;
    padding:12px;
    font-size:15px;
}

.input-box button{
    border:none;
    background:white;
    padding:12px;
    cursor:pointer;
}

.strength-bar{
    width:100%;
    height:10px;

    background:
    rgba(255,255,255,0.3);

    border-radius:20px;

    margin-top:15px;

    overflow:hidden;
}

.strength-fill{
    width:0%;
    height:100%;
    transition:0.4s;
}

#message{
    margin-top:12px;
}

.generator{
    margin-top:25px;
}

.generator h4{
    margin-bottom:10px;
}

.generator select,
.generator button{
    width:100%;
    padding:12px;
    margin-bottom:12px;

    border:none;
    border-radius:10px;

    font-size:14px;
}

.generator button{
    cursor:pointer;
    font-weight:bold;
}

.requirements{
    width:180px;

    background:
    rgba(255,255,255,0.12);

    border-radius:15px;

    padding:15px;
}

.requirements h4{
    margin-bottom:15px;
}

.requirements p{
    margin-bottom:10px;
    font-size:13px;
}