* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background:
        radial-gradient(circle at top left, rgba(0, 174, 255, 0.22), transparent 30%),
        radial-gradient(circle at bottom right, rgba(98, 77, 255, 0.24), transparent 34%),
        linear-gradient(135deg, #050b14, #0b1324 54%, #11152b);
    color: #eef7ff;
}

button,
input {
    font: inherit;
}

.login-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 28px 18px;
}

.login-card {
    width: min(500px, 100%);
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 26px;
    background: rgba(7, 16, 31, 0.82);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.46);
    backdrop-filter: blur(16px);
}

.brand {
    display: flex;
    align-items: center;
    gap: 18px;
}

.logo {
    width: 74px;
    height: 74px;
    flex: 0 0 74px;
    display: grid;
    place-items: center;
    border-radius: 22px;
    font-size: 42px;
    background: linear-gradient(145deg, #45c8ff, #6b63ff);
    box-shadow: 0 16px 34px rgba(58, 167, 255, 0.3);
}

.tag {
    margin: 0 0 8px;
    color: #76d7ff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.6px;
}

h1 {
    margin: 0;
    font-size: clamp(30px, 7vw, 43px);
    line-height: 1;
    letter-spacing: -1.5px;
}

.descricao {
    margin: 24px 0 0;
    color: #b8c7da;
    font-size: 16px;
    line-height: 1.65;
}

.login-form {
    display: grid;
    gap: 18px;
    margin-top: 28px;
}

.campo {
    display: grid;
    gap: 8px;
}

.campo label {
    color: #dce9f7;
    font-size: 14px;
    font-weight: 700;
}

.campo input {
    width: 100%;
    padding: 15px 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    outline: none;
    background: rgba(255, 255, 255, 0.055);
    color: #ffffff;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.campo input::placeholder {
    color: #718299;
}

.campo input:focus {
    border-color: #56c7ff;
    background: rgba(255, 255, 255, 0.075);
    box-shadow: 0 0 0 4px rgba(69, 200, 255, 0.12);
}

.lembrar {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #aebed2;
    font-size: 14px;
    cursor: pointer;
}

.lembrar input {
    width: 17px;
    height: 17px;
    accent-color: #4bbfff;
}

button {
    width: 100%;
    padding: 15px 18px;
    border: 0;
    border-radius: 14px;
    cursor: pointer;
    background: linear-gradient(135deg, #2fb8ff, #6a63ff);
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 14px 30px rgba(70, 129, 255, 0.25);
    transition:
        transform 0.2s ease,
        filter 0.2s ease;
}

button:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
}

button:active {
    transform: translateY(0);
}

.seguranca {
    width: fit-content;
    margin: 24px auto 0;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 9px;
    border: 1px solid rgba(103, 255, 181, 0.18);
    border-radius: 999px;
    background: rgba(52, 196, 121, 0.07);
    color: #9ff2c5;
    font-size: 13px;
}

.status-ponto {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #47e58f;
    box-shadow: 0 0 14px #47e58f;
}

footer {
    margin-top: 24px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #74859c;
    font-size: 12px;
}

footer strong {
    color: #9bb1c9;
}

@media (max-width: 560px) {
    .login-card {
        padding: 26px 20px;
        border-radius: 22px;
    }

    .brand {
        align-items: flex-start;
    }

    .logo {
        width: 62px;
        height: 62px;
        flex-basis: 62px;
        border-radius: 18px;
        font-size: 34px;
    }

    .descricao {
        font-size: 15px;
    }

    footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
