*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body{
    background-image:url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e');
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
}

/* Dark Overlay */
body::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
    z-index:1;
}

.container{
    width:100%;
    max-width:450px;
    padding:20px;
    position:relative;
    z-index:2;
}

.form-box{
    background:rgba(255,255,255,0.95);
    padding:40px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,0.3);
}

.form-box h2{
    text-align:center;
    margin-bottom:25px;
    color:#00b894;
}

.form-box input{
    width:100%;
    padding:12px;
    margin-bottom:15px;
    border:1px solid #ccc;
    border-radius:8px;
    font-size:16px;
}

.form-box input:focus{
    outline:none;
    border-color:#00b894;
}

.form-box button{
    width:100%;
    padding:12px;
    border:none;
    border-radius:8px;
    background:#00b894;
    color:white;
    font-size:16px;
    cursor:pointer;
    transition:0.3s;
}

.form-box button:hover{
    background:#019875;
}

.form-box p{
    text-align:center;
    margin-top:15px;
}

.form-box a{
    color:#00b894;
    text-decoration:none;
    font-weight:bold;
}

.message{
    background:#e8f5e9;
    color:#2e7d32;
    padding:10px;
    margin-bottom:15px;
    border-radius:8px;
    text-align:center;
}

.password-box{
    position:relative;
    width:100%;
}

.password-box input{
    width:100%;
    padding-right:40px;
}

.password-box span{
    position:absolute;
    right:10px;
    top:50%;
    transform:translateY(-50%);
    cursor:pointer;
    font-size:18px;
    user-select:none;
}

/* CLOSE BUTTON */
.close-btn{
    position:absolute;
    top:15px;
    right:15px;
    text-decoration:none;
    font-size:20px;
    color:#333;
    font-weight:bold;
    background:#eee;
    width:35px;
    height:35px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    transition:0.3s;
}

.close-btn:hover{
    background:#ff4d4d;
    color:#fff;
}

.message{
    background:#ffdddd;
    color:#b30000;
    padding:10px;
    margin-bottom:15px;
    border-radius:8px;
    text-align:center;
}
