﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    height: 100vh;
    background-image: url('../img/background.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.login-box {
    width: 350px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 15px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.5);
    color: white;
    backdrop-filter: blur(8px);
}

    .login-box h2 {
        text-align: center;
        margin-bottom: 25px;
        color: #ffffff;
    }

.input-group {
    position: relative;
    margin-bottom: 20px;
}

    .input-group input {
        width: 100%;
        padding: 10px 5px;
        background: transparent;
        border: none;
        border-bottom: 2px solid white;
        color: white;
        font-size: 16px;
        outline: none;
        caret-color: white;
        transition: background-color 5000s ease-in-out 0s;
    }

        .input-group input:-webkit-autofill {
            box-shadow: 0 0 0 1000px transparent inset !important;
            -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
            -webkit-text-fill-color: white !important;
            caret-color: white;
        }

            .input-group input:-webkit-autofill + label,
            .input-group input:focus + label,
            .input-group input:valid + label,
            .input-group input:not(:placeholder-shown) + label {
                top: -10px;
                font-size: 12px;
                color: #ffb6c1;
            }

    .input-group label {
        position: absolute;
        top: 10px;
        left: 5px;
        color: #fff;
        pointer-events: none;
        transition: 0.3s ease;
    }

.options {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 20px;
    color: white;
}

    .options a {
        color: white;
        text-decoration: none;
    }

button {
    width: 100%;
    padding: 10px;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

    button:hover {
        background: rgba(255, 255, 255, 0.6);
    }

.register {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    color: white;
}

    .register a {
        color: #ffb6c1;
        text-decoration: none;
    }
