body {
    background-color: #ffffff;
    font-family: 'Afacad', sans-serif;
}

.cadastro-container {
    background-color: #ffffff;
    border: 2px solid #1a8754;
    border-radius: 30px;
    max-width: 600px;
    width: 90%;
    padding: 4rem 2rem 2rem;
    position: relative;
    text-align: center;
}

.cadastro-title {
    color: #1a8754;
    font-size: 5rem;
    font-weight: 700;
    position: absolute;
    top: -3rem; 
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    white-space: nowrap;
    background-color: #ffffff; 
    padding: 0 1rem; 
}

.subtitle {
    color: #616060;
    font-size: 1.2rem;
    margin-bottom: 3.0rem !important;
    margin-top: 3rem !important;
}

.cadastro-input {
    background-color: #e1e3e5;
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
    width: 90%;
    display: inline-block;
}

.btn-success {
    background-color: #1a6d36;
    border-color: #1a6d36;
    padding: 0.60rem 5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    width: 40%;
    display: inline-block;
}

.btn-success:hover {
    background-color: #15552b;
    border-color: #124d25;
}

.btn-danger {
    background-color: #c62828;
    border-color: #c62828;
    font-size: 1.1rem;
    width: 30%;

}

.btn-danger:hover {
    background-color: #a32020;
    border-color: #8e1b1b;
}

.ifes-logo {
    max-width: 160px;
    margin-top: 2rem;
}

/* Responsividade para mobile */
@media (max-width: 768px) {
    .cadastro-container {
        max-width: 400px;
        width: 85%;
        padding: 3.5rem 1.5rem 2rem;
        margin: 1rem;
    }
    
    .cadastro-title {
        font-size: 4rem;
    }
    
    .subtitle {
        font-size: 1rem;
        margin-top: 1.2rem !important;
        margin-bottom: 1.5rem;
        height: 1.2rem;
    }
    
    .cadastro-input {
        font-size: 1rem;
        padding: 0.65rem 1.2rem;
        width: 100%;
    }
    
    .btn-success {
        font-size: 1rem;
        padding: 0.6rem 3rem;
        width: 50%;
    }
    
    .btn-danger {
        font-size: 1rem;
        width: 40%;
    }
}

@media (max-width: 480px) {
    .cadastro-container {
        max-width: 350px;
        width: 80%;
        padding: 3rem 1rem 1.5rem;
    }
    
    .cadastro-title {
        font-size: 3.2rem;
    }
    
    .subtitle {
        font-size: 0.95rem;
        margin-top: 1rem !important;
        margin-bottom: 1.2rem;
    }
    
    .cadastro-input {
        font-size: 0.95rem;
        padding: 0.6rem 1rem;
    }
    
    .btn-success {
        font-size: 0.95rem;
        padding: 0.55rem 2rem;
        width: 60%;
    }
    
    .btn-danger {
        font-size: 0.95rem;
        width: 35%;
        padding: 0.55rem 1rem;
    }
    
    .ifes-logo {
        max-width: 130px;
        margin-top: 1.5rem;
    }
}
