body{
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: radial-gradient(circle at the top left, #0f0f1a, #1a1a2e, 60%);
    background-color: #1a1a28 ;
    color: #000;
    font-family: 'Times New Roman', Times, serif;
}

.login-container{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.login-box{
    width: 100%;
    max-width: 420px;
    padding: 30px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #1a1a2e;
}

.login-box h1{
    margin-bottom: 10px;
    display: flex;
    text-align: center;
    flex-direction: column;
    color: #f5c77a;
}

.login-box p{
    text-align: center;
    margin-bottom: 25px;
    font-size: 0.95rem;
    color: #f5c77a;
}

.input-group{
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
}

.input-group label{
    margin-bottom: 6px;
    font-size: 0.9rem;
    color: #f5c77a;
}

.input-group input{
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 0.95rem;
    transition: border 0.3s, box-shadow 0.3s;
}

.input-group input:focus{
    outline: none;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.4)
}

.options{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: #f5c77a;
}

.options a{
    text-decoration: none;
}

.options a:hover{
    text-decoration: double;
}

.login-btn{
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.1s ease, box-shadow 0.1s ease, opacity 0.2s;
}

.login-btn:hover{
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    opacity: 0.9s;
    transform:translateY(-2px)
}

.signup-link{
    text-align: center;
    margin-top: 18px;
    font-size: 0.9rem;
}

.signup-link a{
    text-decoration: none;
    font-weight: 600;
}

.signup-link a:hover{
    text-decoration: double;
}