*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    min-height:100vh;
    background:linear-gradient(
        135deg,
        #667eea,
        #764ba2
    );

    display:flex;
    flex-direction:column;
    align-items:center;
}

nav{
    width:100%;
    background:white;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 40px;
}

nav ul{
    display:flex;
    list-style:none;
    gap:20px;
}

nav a{
    text-decoration:none;
    color:black;
    font-weight:bold;
}

.login-container{
    width:350px;
    background:white;
    padding:30px;
    border-radius:15px;
    margin-top:80px;
    box-shadow:0 10px 30px rgba(0,0,0,0.2);
    text-align:center;
}

.login-container h2{
    margin-bottom:10px;
}

.login-container p{
    color:gray;
    margin-bottom:20px;
}

input{
    width:100%;
    padding:12px;
    margin:10px 0;
    border:1px solid #ccc;
    border-radius:8px;
}

button{
    width:100%;
    padding:12px;
    border:none;
    border-radius:8px;
    background:#667eea;
    color:white;
    font-size:16px;
    cursor:pointer;
    margin-top:10px;
}

button:hover{
    background:#4c63d2;
}

.forgot{
    display:block;
    margin-top:15px;
    text-decoration:none;
    color:#667eea;
}

.signup{
    margin-top:20px;
}