/* Reset e configurações base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, rgba(197, 203, 226, 0.8) 0%, rgba(218, 207, 230, 0.8) 100%), 
                url('/img/backgrounds/login_trabalhadores.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    overflow-y: hidden;
}

/* Container principal do registro */
#hot-register-container {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 20px;
}

/* Card do formulário - estilo do formulário de inscrição */
.hot-register-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    max-width: 450px;
    width: 100%;
    margin: 0 auto;
    transition: all 0.3s ease;
}

/* Header do formulário - igual ao de inscrição */
.hot-form-header {
    background: linear-gradient(135deg, #F5140A 0%, #F54311 100%);
    color: white;
    padding: 20px;
    text-align: center;
}

.hot-form-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.hot-form-subtitle {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Corpo do formulário */
.hot-form-body {
    padding: 25px;
}

/* Grupos de formulário - estilo do formulário de inscrição */
.hot-form-group {
    margin-bottom: 20px;
}

.hot-form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
    display: block;
    font-size: 0.9rem;
}

.hot-input-group {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.hot-input-group .hot-form-control {
    border-radius: 8px;
}

.hot-input-group .hot-form-control:focus {
    border-radius: 8px;
}

.hot-input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #F5140A;
    z-index: 3;
    font-size: 0.9rem;
}

.hot-form-control {
    padding: 12px 12px 12px 40px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
    width: 100%;
}

.hot-form-control:focus {
    border-color: #F5140A;
    box-shadow: 0 0 0 0.2rem rgba(245, 20, 10, 0.25);
    background: white;
    outline: none;
}

.hot-form-control.is-invalid {
    border-color: #dc3545;
    background: #fff5f5;
}

.hot-form-control.is-valid {
    border-color: #28a745;
    background: #f0fff4;
}

/* Botão de ação - estilo do formulário de inscrição */
.hot-btn-primary {
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.8rem;
    background: linear-gradient(135deg, #F5140A 0%, #F54311 100%);
    color: white;
    width: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hot-btn-primary:hover {
    background: linear-gradient(135deg, #d41209 0%, #e03a0f 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(245, 20, 10, 0.3);
}

.hot-btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Ações do formulário */
.hot-form-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.hot-form-footer .byhotsystems {
    margin-top: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #555;
    font-weight: 500;
}


.hot-form-footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.hot-footer-text {
    font-size: 0.8rem;
    color: #666;
}

.hot-brand {
    color: #F56B11;
    font-weight: 600;
}

.hot-systems {
    color: #666;
}

/* Responsividade */
@media (max-width: 768px) {
    #hot-register-container {
        padding: 10px;
    }
    
    .hot-register-card {
        margin: 10px;
        border-radius: 12px;
        max-width: 100%;
    }
    
    .hot-form-header {
        padding: 15px;
    }
    
    .hot-form-title {
        font-size: 1.5rem;
    }
    
    .hot-form-body {
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .hot-register-card {
        padding: 0;
        border-radius: 12px;
    }
    
    .hot-form-title {
        font-size: 1.3rem;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
