
/* TEMA GROW SUPLEMENTOS */
body {
    background-color: #ffffff;
    font-family: 'Lato', Arial, sans-serif;
}
.limiter {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
}
.container-login100 {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.wrap-login100 {
    width: 100%;
    max-width: 450px;
    background: #ffffff;
    border-radius: 15px;
    padding: 50px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 2px solid #ff6600;
    position: relative;
    overflow: hidden;
}

/* Logo e Título */
.login100-form-title {
    font-size: 28px;
    font-weight: bold;
    color: #ff6600;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Georgia', serif;
}

/* Input Fields */
.wrap-input100 {
    position: relative;
    margin-bottom: 25px;
}
.input100 {
    font-size: 16px;
    padding: 15px 20px;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    width: 89%;
    background: #f8f8f8;
    transition: all 0.3s ease;
    color: #000000;
}
.input100:focus {
    border-color: #ff6600;
    background: #ffffff;
    box-shadow: 0 0 0 0.2rem rgba(255, 102, 0, 0.25);
    outline: none;
}
.label-input100 {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    display: block;
    font-weight: 600;
}
.focus-input100 {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    border-radius: 10px;
}
.focus-input100::before {
    content: "";
    display: block;
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff6600;
    transition: all 0.4s;
}
.input100:focus + .focus-input100::before {
    width: 100%;
}

/* Botão de Login */
.container-login100-form-btn {
    margin-top: 30px;
}
.login100-form-btn {
    background: linear-gradient(45deg, #ff6600, #ff8533);
    color: #ffffff;
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}
.login100-form-btn:hover {
    background: linear-gradient(45deg, #e55a00, #ff6600);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.4);
}
.login100-form-btn:active {
    transform: translateY(0);
}

/* Links e Checkbox */
.flex-sb-m {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
}
.contact100-form-checkbox {
    display: flex;
    align-items: center;
}
.input-checkbox100 {
    margin-right: 8px;
    accent-color: #ff6600;
}
.label-checkbox100 {
    color: #666;
    font-size: 14px;
    cursor: pointer;
}
.txt1 {
    color: #ff6600;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s ease;
}
.txt1:hover {
    color: #e55a00;
    text-decoration: underline;
}

/* Alertas */
.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    padding: 12px 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    border-left: 4px solid #dc3545;
    font-size: 14px;
}

/* Seção de imagem/background */
.login100-more {
    display: none;
}

/* Efeitos decorativos */
.wrap-login100::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(45deg, #ff6600, #000000);
}

/* Responsividade */
@media (max-width: 576px) {
    .wrap-login100 {
        margin: 20px;
        padding: 30px 25px;
    }
    .login100-form-title {
        font-size: 24px;
    }
}

/* Loading animation */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
.login100-form-btn:focus {
    animation: pulse 0.5s ease-in-out;
}

/* Importando fonte Lato */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;600;700&display=swap');