*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    background:url("../images/space.jpg");
    background-size:cover;
    background-position:center;
}

.container{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
}

.login-box{
    width:400px;
    padding:40px;
    border-radius:15px;
    background:rgba(0,0,0,0.45);
    backdrop-filter:blur(8px);
    text-align:center;
    color:white;
    box-shadow:0px 0px 20px rgba(0,0,0,.5);
}

.logo{
    width:70px;
    margin-bottom:10px;
}

.poli{
    width:100px;
    margin-bottom:10px;
}

h2{
    font-size:25px;
}

h1{
    font-size:30px;
    margin-bottom:10px;
}

p{
    font-size:14px;
    margin-bottom:20px;
}

.input-box{
    display:flex;
    align-items:center;
    background:#2d3142;
    border-radius:8px;
    margin-bottom:15px;
    padding:12px;
}

.input-box i{
    color:#bdbdbd;
}

.input-box input{
    flex:1;
    background:none;
    border:none;
    outline:none;
    color:#ffffff; /* CHANGED FROM #2d3142 TO WHITE */
    margin-left:10px;
}

/* Added to make the placeholder text ("Username"/"Password") clearly visible */
.input-box input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.login-btn{
    width:100%;
    padding:12px;
    border:none;
    border-radius:8px;
    background:#2f7df6;
    color:white;
    font-size:16px;
    cursor:pointer;
    transition:.3s;
}

.login-btn:hover{
    background:#145fe0;
}

.forgot{
    display:block;
    margin-top:18px;
    color:#66b3ff;
    text-decoration:none;
    font-size:14px;
}

.forgot:hover{
    text-decoration:underline;
}
