    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    background: url('http://p8.qhimg.com/bdr/__85/t012ba98725856b29a7.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.login-container {
    width: 100%;
    max-width: 400px;
}

.login-box {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 40px;
    width: 100%;
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-title {
    font-size: 24px;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
}

.login-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.form-group {
    margin-bottom: 20px;
}


.btn {
    width: 100%;
    background: rgba(255, 255, 255, 0.3);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.5);
    margin-top: 10px;
}

.btn:hover {
    background: rgba(255, 255, 255, 0.5);
}

.footer {
    text-align: center;
    padding: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-top: 20px;
}

.footer a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s;
}

.footer a:hover {
    color: index.php4CAF50;
    text-decoration: underline;
}


    label {
        display: block;
        margin-bottom: 8px;
        color: white;
        font-weight: 500;
    }
    
    input[type="text"], 
    input[type="password"] {
        width: 100%;
        padding: 12px;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.1);
        border-radius: 5px;
        color: white;
        font-size: 14px;
        transition: all 0.3s;
    }
    
    input[type="text"]:focus, 
    input[type="password"]:focus {
        outline: none;
        border-color: rgba(255, 255, 255, 0.6);
        background: rgba(255, 255, 255, 0.2);
    }
    
    @media (max-width: 945px) {
    .login-box {
        padding: 30px 20px;
        width: 95%;
    }
}