body {
    margin: 0;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    font-family: 'Segoe UI', sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.login-box {
    backdrop-filter: blur(15px);
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    padding: 50px 30px;
    width: 100%;
    max-width: 400px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.login-box img {
    width: 160px;
    margin-bottom: 30px;
    border-radius: 12px;
}

.login-box h2 {
    color: #ffffff;
    margin-bottom: 30px;
    font-size: 22px;
}

.login-box form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 18px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 14px;
    outline: none;
}

input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

button {
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    padding: 12px 30px;
    width: 60%;
    cursor: pointer;
    font-size: 15px;
    transition: opacity 0.3s ease;
}

button:hover {
    opacity: 0.85;
}

.login-box a {
    display: block;
    margin-top: 20px;
    color: #00ffff;
    font-size: 14px;
    text-decoration: none;
}

.login-box a:hover {
    text-decoration: underline;
}
