﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

html, body {
    height: 100%;
    display: flex;
    flex-direction: column;
}

body {
    justify-content: center;
    align-items: center;
    background-color: #12160C;
}

.body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.close-alert {
    position: absolute;
    right: -10px;
    top: -15px;
    border-radius: 15px;
    width: 30px;
    height: 31px;
}

.alert {
    padding: 10px !important;
}

.mensagem-popup {
    position: fixed;
    display: flex;
    left: 50%;
    top: 8%;
    width: 370px;
    z-index: 1050;
    margin-top: -30px;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(300px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateX(-50%);
    }

    to {
        opacity: 0;
        transform: translateX(300px);
    }
}

.mensagem-popup .alert {
    animation: slideIn 1s forwards;
}

    .mensagem-popup .alert.slide-out {
        animation: slideOut 1s forwards;
    }

.login-container {
    background-color: #272727;
    padding: 20px 30px 30px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 370px;
    text-align: center;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
}
.Negado {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
}
h1 {
    margin-bottom: 20px;
    color: #93682B;
}

p{
    color: white;
    margin-bottom:10px;
}

input[type=text] {
    --w: 1ch; /* control the width for each letter */
    --g: .15em; /* the gap between letters */
    --b: 2px; /* the border thickness */
    --n: 8; /* the number of letters */

    --c: #888;
    font-size: 36px;
    line-height: 1.5; /* control the height */
    letter-spacing: var(--w);
    font-family: monospace;
    width: 322px;
    color: white;
    padding-left: calc((var(--w) - var(--g))/2);
    clip-path: inset(0 calc(var(--w)/2) 0 0);
    background: repeating-linear-gradient(90deg, #93682B 0 var(--b), #00000000 0 calc(1ch + var(--w) - var(--g) - var(--b)), #93682B calc(1ch + var(--w) - var(--g)), #00000000 0 2ch), conic-gradient(at calc(100% - var(--g) - 1px) var(--b), #00000000 75%, #93682B 0) 0 0 / calc(1ch + var(--w)) calc(100% - var(--b));
    border: none;
    outline: 0;
}

input[type=text]:focus-visible {
  --c:#000;
}

@media (max-width: 500px) {
    input[type=text] {
        font-size: 33px; /* Reduz o tamanho da fonte */
    }
}

.input-group {
    margin-bottom: 15px;
    text-align: left;
}

    .input-group input {
        width: 100%;
        padding: 10px;
        margin-top: 5px;
        border: 1px solid #93682B;
        border-radius: 5px;
        background-color: #12160C;
        color: #FFF;
    }

    .input-group button {
        width: 100%;
        padding: 10px;
        background-color: #93682B;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-size: 16px;
        transition: .5s;
    }

        .input-group button:hover {
            background-color: #75511F;
            color:white;
            font-size: 20px;
        }

.form-check {
    align-items: center;
}

    .form-check-input {
        margin: 0;
    }

label {
    font-size: 14px;
    color: #FFF;
}

.btn-secondary {
    width: 49%;
    background-color: #555;
    color: white;
    border: none;
    padding: 10px;
    margin: 2px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: .5s;
}

    .btn-secondary:hover {
        background-color: #444;
        font-size: 16px;
        padding: 10px;
        text-align: center;
    }

footer {
    width: 100%;
    background-color: #272727;
    border-top: solid 2px #93682B;
    text-align: center;
}

    footer label {
        color: #93682B;
    }

    footer a {
        margin: 10px;
    }