/* REGISTER */

.register-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 15px;
    background-color: #f7f9fb;
    min-height: 100vh;
}

.register-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
    padding: 30px;
    max-width: 900px;
    width: 100%;
}

.register-header h3 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.login-header p {
    color: #777;
    font-size: 14px;
}

.register-body {
    margin-top: 25px;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    min-width: 200px;
    position: relative;
}

label.form-label {
    font-weight: 500;
    margin-bottom: 6px;
    display: block;
}

.form-control {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    transition: border-color 0.3s ease;
    font-size: 14px;
}

.form-control:focus {
    outline: none;
    border-color: #007bff;
}

.form-control-completed {
    border-color: #28a745 !important;
    background-color: #eaffea;
}

.checkmark {
    position: absolute;
    right: 10px;
    top: 38px;
    font-size: 18px;
    color: #28a745;
}

.alert.alert-danger {
    font-size: 13px;
    padding: 8px 12px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.btnCrearCuenta{
    font-family: "Playwrite DE Grund", cursive;
    color: #ffffff;
    background-color: #6ee7b7;
    text-transform: none;
    text-decoration: none;
    width: 50%;
    border-radius: 10px;
    font-size: large;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px !important;
}

.btnCrearCuenta:hover{
    background-color: #eafaf1;
    color: #6ee7b7;
    transition: 0.3S;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px !important;
}

.container-footer {
    margin-top: 30px;
    text-align: center;
}

.btnIniciar {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #2c3e50;
    background-color: #ffffff;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}

.btnIniciar:hover {
    background-color: #e3e3e3;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}

.btnIniciar i {
    transition: transform 0.3s ease;
}

.btnIniciar:hover i {
    transform: translateX(-4px);
}

.register-link {
    color: #007bff;
    font-weight: 500;
    text-decoration: none;
}

.register-link:hover {
    text-decoration: underline;
}



@media (max-width: 767px) {

    .login-card-register {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100vw;
        height: auto;
        padding: 40px;
        border-radius: 10px;
        background-color: #f8f9f9;
        
    }

    .register-card {
        background: #f8f9f9;
        width: 100vw;
        box-shadow: none;
       
    }
    
    .container-footer{ 
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 5px;
    }
    
    .btnCrearCuenta{
        font-family: "Playwrite DE Grund", cursive;
        color: #ffffff;
        background-color: #6ee7b7;
        text-transform: none;
        text-decoration: none;
        width: 80vw;
        border-radius: 10px;
        font-size: large;
        box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px !important;
    }
    
    .btnCrearCuenta:hover{
        background-color: #eafaf1;
        color: #6ee7b7;
        transition: 0.3S;
        box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px !important;
    }
    
}