
/* comment */
main { 
    width: 100%; 
    max-width: 1200px;
    margin: 0 auto;
    display: flex; 
    flex-direction: column;
    align-items: center; 
} 


.login-header1, .login-header2 {
    text-align: center;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.login-header1 {
    font-family: "Nunito Sans"; 
    color: #043259; 
    font-size: 24px;
    font-weight: 600;
    line-height: 32.74px;
    margin-bottom: 15px;
    z-index: 1;
}

.login-header2 {
    font-family: "Nunito Sans"; 
    color: #043259; 
    font-size: 16px;
    font-weight: 400;
    line-height: 27.28px;
    margin-bottom: 15px;
    z-index: 1;
}

.header3 {
    font-family: "Nunito Sans"; 
    color: #043259; 
    font-size: 16px;
    font-weight: 400;
    line-height: 21.82px;
    margin-bottom: 15px;
    z-index: 1;
}

.login-box form {
    width: 100%;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

.login-box {
    padding: 20px;
    background: #FFF;
    border-radius: 30px;
    border: 3px solid #60A699;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, .40);
    width: 550px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items:center;
    margin-top: 15px;
    padding: 20px 30px;
    margin-bottom: 40px;

}

.login-box label {
    font-family: "Nunito Sans"; 
    font-size: 16px;
    font-weight: 600;
    color: #043259;
    display: block;
    text-align: left;
    margin-bottom: 8px;
    margin-top: 10px;
    padding-left: 0px;
}


.login-box input[type="email"] {
    background-color: rgba(176, 217, 205, .15);
    color: #043259;
    width: 100%;
    border: 1px solid #60A699;
    border-radius: 5px;
    font-size: 14px;
    padding: 12px;
    margin-bottom: 8px;
    box-sizing: border-box;

}


.login-box input[type="email"]:focus {
    border-color: #60A699;
    outline: none;
    box-shadow: 0 0 0 3px rgba(96, 166, 153, .1);
}

/* Toggle */
.password-input-container {
    position: relative;
    display: block;
    width: 100%;
    max-width: 450px;
}

.login-box .password-input-container input[type="password"],
.login-box .password-input-container input[type="text"] {
    background-color: rgba(176, 217, 205, .15);
    color: #043259;
    width: 100%;
    border: 1px solid #60A699;
    border-radius: 5px;
    font-size: 14px;
    padding: 12px;
    margin-bottom: 4px;
    box-sizing: border-box;
}

/* Hover state */
.login-box .password-input-container input[type="password"]:hover,
.login-box .password-input-container input[type="text"]:hover {
    border: 1px solid #043259;
}

/* Focus state */
.login-box .password-input-container input[type="password"]:focus,
.login-box .password-input-container input[type="text"]:focus {
    border: 1px solid #043259;
    outline: none;
}

.required {
    color: #E7964F;
    font-weight: bold;
}

.login-link {
  text-align: left;
  margin-top: 16px;
  color: #043259;
  font-size: 14px;
}

.login-link a {
  color: #036A6F;
  text-decoration: none;

}

.login-link a:hover {
  text-decoration: underline;
}

/* Toggle button */
.login-box .password-input-container .toggle-password-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    cursor: pointer;
    padding: 0 !important;
    margin: 0 !important;
    width: 24px;
    height: 24px;
    z-index: 10;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    outline: none !important;
}

.input-with-icon .toggle-password-btn {
        position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    cursor: pointer;
    padding: 0 !important;
    margin: 0 !important;
    width: 24px;
    height: 24px;
    z-index: 10;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    outline: none !important;
}

.toggle-password-btn img {
    width: 20px;
    height: 20px;
    object-fit: contain;  /* Maintains aspect ratio */
    display: block;
    pointer-events: none;
}

.toggle-password-btn:hover img {
    opacity: 0.7;  /* Slight dim on hover */
}

.toggle-password-btn:focus {
    outline: none;
}

.toggle-password-btn:active {
    opacity: 0.5;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkbox-container input[type="checkbox"] {
    margin: 0;
    width: 16px;
    height: 16px;
    accent-color: #043259;
}

.checkbox-container div {
    display: block;
    align-items: left;
    gap: 5px; /* Space between checkbox and label */
}

.checkbox-container label {
    display: inline-block;
    margin: 0;
    padding: 0;
    line-height: 16px;
    vertical-align: left;
    font-size: 14px;
    font-family: "Nunito Sans";
    color: #043259;
}

.form-footer a {
    color: #036A6F;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.form-footer a:hover {
    text-decoration: underline;
}

.register-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 36px;
    box-sizing: border-box;
    gap: 5px;
    margin-top: 15px;
}

.register-checkbox-row {
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
    gap: 172px;
    width: 100%;
    margin-bottom: 15px;
    box-sizing: border-box;
}

.register-footer button {
    margin: 10px auto 0 auto;
    display: block;
}

.register-checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.register-checkbox-item input[type="checkbox"] {
    margin: 0;
    width: 16px;
    height: 16px;
    accent-color: #043259;
}

.register-checkbox-item label {
    font-size: 14px !important;
    font-family: "Nunito Sans";
    color: #043259;
    margin: 0;
    padding: 0 !important;
    font-weight: 400;
}

.register-checkbox-item label a {
    color: #036A6F;
    text-decoration: none;
    font-size: 14px;
}

.register-checkbox-item label a:hover {
    text-decoration: underline;
}


.login-box button:not(.btn-primary) {
    padding: 12px 24px;
    background-color: #043259;
    border-radius: 5px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    margin: 15px auto;
    border: none; 
    display: block;
}
    
.login-box button:hover {
    background: rgba(96, 166, 153, 1);
    text-decoration: none;
    transition: all 0.2s ease;
}
 
.form-footer {
    display: grid;
    grid-template-columns: auto 1fr; 
    justify-content: space-between;
    margin-bottom: 20px;
    margin-top: 15px;
    width: 100%;
    max-width: 450px;
    font-size: 14px;
    font-weight: 400;
    font-family: "Nunito Sans"; 
}


.form-footer a {
    color: #036A6F;
    text-decoration: none;
    font-size: 14px;
    width: 100%;
    text-align: right;
}

.form-footer a:hover {
    text-decoration: underline;
}

.registration-links {
    text-align: center;
    width: 100%;
    margin: 5px 0;
    font-size: 14px;
    font-weight: 400;
    font-family: "Nunito Sans"; 
    color: #043259;
}

.registration-links a{
    color: #036A6F;
    text-decoration: none;
}

.registration-links a:hover{
    text-decoration: underline;
}

/*Verification Page */
.verification {
    max-width: 600px;
    margin: 20px auto;

}
.step h2 {
    color: #043259;
    font-family: "Nunito Sans";
    font-size: 20px;
    font-weight: 400;
    line-height: 27.28px;
    display: flex;
    align-items: center;
    margin-bottom: 10px;

}

.step p{
    color: #043259;
    font-family: "Nunito Sans";
    font-size: 16px;
    font-weight: 400;
    line-height: 21.82px;
    margin-bottom: 15px;
    margin-left: 10px;
}

.step span{
    background-color: #043259; 
    color:white;
    width: 25px;
    height: 25px;
    border-radius: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-weight: 400;
    font-family: "Nunito Sans";
    font-size: 16px;

}

/* Styles for Validation Process */

.NPI-Validation-Box {
    border: 3px solid #60A699;
    border-radius: 30px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.40);
    width: 58%;
    height: auto;
    max-width: 800px;
    padding: 20px 36px;
    transition: all 0.3s ease;
    margin: 0 auto 25px auto;
    margin-bottom: 40px;
    align-items: center !important;
}

.NPI-Validation-Box.expanded {
    max-width: 800px;
    height: auto;
    min-height: 357px;
}

.npi-container {
    display: flex;
    align-items: center;
    gap: 50px;
    padding-right: 36px;
    margin-top: 8px;
    margin-bottom: 10px;
}

.npi-container input[type="text"] {
    background-color: rgba(176, 217, 205, .35);
    color: #678C96 ;
    border: 2px solid #60A699;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 400;
    max-height: 40px;
    width: 370px;
    max-width: 450px;
    padding:  8px 40px 8px 16px;
}

.npi-container input[type="text"]:disabled {
    background-color: rgba(176, 217, 205, .35);
    cursor: not-allowed;
}

.NPI-Validation-Box button {
    max-height: 40px;
    border-radius: 5px;
    background-color: #043259;
    color: white;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 24px;
    border: none; 
    white-space: nowrap;
    transition: background-color 0.3s ease;

}

.NPI-Validation-Box button:hover:not(.validated){
    background: rgba(96, 166, 153, 1);
    text-decoration: none;
    transition: all 0.2s ease;
}

.npi-container button.validated {
    background-color: #60A699;
    cursor: not-allowed;
}

.NPI-Validation-Box form {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    margin-bottom: 20px;
}



.NPI-Validation-Box label {
    font-size: 16px;
    font-family: "Nunito Sans";
    color: #043259;

}


.name-fields {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 20px;
    box-sizing: border-box;
}

.name-field-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.name-field-group label {
    font-size: 16px;
    font-family: "Nunito Sans";
    color: #043259;
    text-align: left;
    display: block;
    padding-left: 0;
}



.name-fields-labels {
    display: flex;
    width: 100%;
    margin-bottom: 8px; 
}

.name-fields-labels label {
    font-size: 16px;
    font-family: "Nunito Sans";
    color: #043259;
    text-align: left;
    padding-left: 0;
    margin: 0;
    white-space: nowrap;
}


.name-fields-labels label:nth-child(1) {
    width: 230px;  /* Width for Nombre */

}

.name-fields-labels label:nth-child(2) {
    width: 55px;  /* Width for Inicial */
    text-align: left;
    margin-left: 0;
    padding-left: 46px;

}

.name-fields-labels label:nth-child(3) {
    width: 230px;  /* Width for Apellidos */
    align-items: left;
    margin-left: 0;
    padding-left: 46px;
}

.name-inputs {
    display: flex;
    width: 100%;
    gap: 20px;
    justify-content: flex-start;
}

.name-fields input {

    background-color: rgba(176, 217, 205, .35);
    font-size: 14px;
    font-family: "Nunito Sans";
    color: #043259;
    border: 2px solid #60A699;
    border-radius: 6px;
    padding:  8px 40px 8px 16px;
}

.name-inputs input#name {
    width: 230px; /* Nombre field */
}

.name-inputs input#initial {
    width: 55px; /* Initial field */
    margin-left: 0;
}

.name-inputs input#lastname {
    width: 230px; /* Apellidos field */
    margin-left: 0;
}

.input-error {
    border: 1.5px solid #E56163 !important;
    background-color: #fff8f8 !important;
}

.field-error-text, .modal-server-error {
    font-size: 12px;
    color: #E56163;
    margin: 4px 0 10px 0;
}

#providerDetails {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-top: 0;
    width: 100%;
}

#providerDetails.show {
    opacity: 1;
    margin-top: 20px;
    text-align: center;
}



#providerDetails button {
    max-height: 40px;
    border-radius: 5px;
    background-color: #043259;
    color: white;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 24px;
    border: none; 
    white-space: nowrap;
    margin-top: 30px;
    font-family: "Nunito Sans";
    position: center;


}

#providerDetails button:hover {
    background: rgba(96, 166, 153, 1);
    text-decoration: none;
    transition: all 0.2s ease;
}

#providerDetails a {
    display: block;
    text-align: center;
    margin: 10px;
    font-size: 14px;
    font-weight: 400;
    font-family: "Nunito Sans"; 
    color: #036A6F;
    text-decoration: none;
    position: center;
}

#providerDetails a:hover {
    text-decoration: underline;
}

.hidden {
    display: none !important;
}

.ranking-teaser-card {
    background: #F0F6FA;
    border: 0.5px solid #60A699;
    border-radius: 10px;
    padding: 14px 16px;
    text-align: center;
    margin-top: 12px;
}
.ranking-teaser-pos {
    font-size: 36px;
    font-weight: 500;
    color: #043259;
    line-height: 1;
}
.ranking-teaser-text {
    font-size: 12px;
    color: #4d6F8C;
    margin-top: 4px;
    margin-bottom: 10px;
}
.ranking-teaser-cta {
    font-size: 12px;
    color: #60A699;
    font-weight: 600;
    text-decoration: none;
}
.ranking-teaser-cta:hover {
    color: #043259;
    text-decoration: underline;
}


/*Overlays and Pop-ups in styles.css */


.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 9999;
    display: none;
}

.overlay.show {
    display: flex !important;
}

.popup {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    width: 90%;
    max-width: 400px;
    font-family: "Nunito Sans";
    color: #043259;
    display: none;
    z-index: 10000;
    /*transform: translate(-50%, -50%);*/
    
}

.popup.show {
    display: block !important;
}

.popup-success {
    border: 1px solid #60A699;
    box-shadow: 0 4px 6px 2px #60A699;
}

.popup-error {
    border: 1px solid #FF4D4D;
    box-shadow: 0 2px 2px 2px #FF4D4D;
}

.popup-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 18px;
    color: #043259;
}

.popup-message {
    font-family: "Nunito Sans";
    color: #043259;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
    text-align: center;
    align-items: center;
    position: relative;
    justify-content: center;
}

.popup-message div:nth-child(1) {
    font-size: 24px;
    font-weight: 600px;
    margin: 15px 0;
}

.popup-message div:nth-child(2) {
    font-size: 16px;
    color: #043259;
}

.npi-number {
    color: #036A6F;
    margin-bottom: 10px;
    display: inline-block;
    font-size: 20px;
    font-weight: 600px;
    font-family: "Nunito Sans";
}

.popup-btn-primary {
    margin-top: 20px;
    background: #043259;
    color: #FFF;
    border-radius: 5px;
    font-family: "Nunito Sans";
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    padding: 12px 24px;
}

.popup-btn-primary:hover {
    background: rgba(96, 166, 153, 1);
    text-decoration: none;
    transition: all 0.2s ease;
}

.popup-btn-error {
    margin-top: 20px;
    background: #E56163;
    color: #FFF;
    border-radius: 5px;
    font-family: "Nunito Sans";
    font-weight: 500;
    padding: 12px 24px;
    font-size: 14px;
    text-align: center;
}

.popup-btn-error:hover {
    background: #c0392b;
}


#create-account {
    padding-right: 36px;
    width: 100%;
}

.account-email-password {
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
}

/*create 2 column layout*/
.account-email-labels, .account-password {
    display: flex; 
    gap: 20px;
    margin-bottom: 8px;
    width: 100%;
}

.account-input {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-right: 36px;
}

.account-input label {
    font-size: 16px;
    font-family: "Nunito Sans";
    color: #043259;
    text-align: left;
    margin-top: 20px;
    margin-bottom: 8px;
    padding-left: 0;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}


.input-with-icon input {
    background-color: rgba(176, 217, 205, .35);
    font-size: 14px;
    font-family: "Nunito Sans";
    color: #043259;
    border: 2px solid #60A699;
    border-radius: 6px;
    padding:  8px 40px 8px 16px;
    width: 100%;
    
}

.input-with-icon i {
    position: absolute;
    left: 12px;
    color: #60A699;
    z-index: 1;
}



.input-with-icon:hover {
    border-color: #043259;
}

.input-with-icon input:focus {
    outline: none;
}

.popup-info {
    border: 1px solid #E7964F;
    box-shadow: 0 4px 6px 2px rgba(231, 150, 79, 0.4);
}

/* Password Requirements */
.password-requirements {
    margin-top: 10px;
    padding: 10px;
    background: rgba(176, 217, 205, 0.1);
    border-radius: 5px;
    width: 100%;
}

/* Password Requirements */
.password-requirements-2{
    margin-top: 10px;
    padding: 10px;
    background: rgba(176, 217, 205, 0.1);
    border-radius: 5px;
}

.password-requirements p, .password-requirements-2 p {
    margin: 5px 0;
    font-size: 13px;
    color: #4d6F8C;
}

.password-requirements p.valid, .password-requirements-2 p.valid {
    color: #60A699;
}

.password-requirements p.valid::before, .password-requirements-2 p.valid:before {
    content: "✓ ";
    font-weight: 700;
}

.password-requirements p::before, .password-requirements-2 p::before {
    content: '○ ';
    color: #999;
}

.btn-primary {
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    background: #043259;
    color: white;
    font-family: "Nunito Sans";
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    border: 2px solid #60A699;
    border-radius: 5px;
    background: white;
    color: #043259;
    font-family: "Nunito Sans";
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    text-align: center;
    box-sizing: border-box;
}

.modal-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}


.modal-actions .btn-secondary, .modal-actions .btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.btn-secondary:hover, .btn-primary:hover {
    background: rgba(96, 166, 153, 1);
    text-decoration: none;
    transition: all 0.2s ease;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-overlay.active {
    display: flex;
}

.resend-timer {
    margin-top: 16px;
    text-align: center;
}

.modal-content {
    background: white;
    border-radius: 10px;
    padding: 30px;
    max-width: 400px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    font-family: "Nunito Sans";
    color: #043259;
}

.modal-overlay.active {
    display: flex !important;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 28px;
    font-weight: 700;
    cursor: pointer;
    color: #043259;
    line-height: 1;
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-header .modal-icon {
    font-size: 60px;
    margin-bottom: 15px;
}
.modal-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.modal-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.modal-header h2 {
    color: #043259;
    font-family: "Nunito Sans";
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}


.modal-form-group {
    margin-bottom: 20px;
}

.modal-label {
    display: block;
    color: #043259;
    font-family: "Nunito Sans";
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.modal-input {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.modal-form-group input[type="text"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #60A699;
    border-radius: 5px;
    font-family: "Nunito Sans";
    font-size: 14px;
    color: #043259;
    background: rgba(176, 217, 205, 0.15);
}

/* =========================================
   RESPONSIVE STYLES
   Tablet: 768px | Mobile: 480px
   ========================================= */

/* --- TABLET (768px) --- */
@media (max-width: 768px) {


    .login-header1 {
        font-size: 20px;
    }

    .login-header2 {
        font-size: 14px;
    }

    .login-box {
        width: 90%;
        padding: 20px 24px;
        border-radius: 20px;
    }

    .login-box form {
        max-width: 100%;
    }

    .password-input-container {
        max-width: 100%;
    }

    .login-box .password-input-container input[type="password"],
    .login-box .password-input-container input[type="text"] {
        max-width: 100%;
    }

    .form-footer {
        max-width: 100%;
        grid-template-columns: auto 1fr;
        gap: 8px;
    }

    .login-box button[type="submit"] {
        width: 100%;
        max-width: 300px;
    }
}

/* --- MOBILE (480px) --- */
@media (max-width: 480px) {

    .main {
        align-items: center;
    }

    .header3 {
        padding: 0 20px;
        text-align: center;
    }

    .step {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .step h2 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
        padding-left: 0;
    }

    .step span {
        margin-right: 0;
    }

    .npi-container input[type="text"] {
        width: 100%;

    }

    .step p {
        font-size: 14px;
        margin-top: 4px;
        padding-left: 0;
    }

    .verification {
        margin-top: 0;
        text-align: center;
        padding: 0 16px;
    }

    .popup-btn-primary, .popup-btn-error {
        font-size: 13px;
        padding: 8px 16px;
    }

    .login-header1 {
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 5px;
        margin-top: 10px;
        text-align: center;
        padding: 5px;
    }

    .login-header2 {
        font-size: 13px;
        line-height: 20px;
        margin-bottom: 10px;
        text-align: center;
        padding: 5px;
        max-width: 280px;
    }

    .login-box {
        width: 90%;
        border-radius: 15px;
        border-width: 2px;
        max-width: 250px;
    }

    .login-box label {
        font-size: 14px;
        margin-top: 5px;
        width: 95%;
    }

    .login-box input[type="email"] {
        font-size: 13px;
        padding: 10px;
        margin-bottom: 5px;
    }

    .npi-container input {
        width: 100%;
        box-sizing: border-box;
    }

    .login-box .password-input-container input[type="password"],
    .login-box .password-input-container input[type="text"] {
        font-size: 13px;
        padding: 10px;
    }

    .checkbox-container input[type="checkbox"] {
        width: 12px;
        height: 12px;
    }

    .register-checkbox-row {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
        padding-left: 10px;
    }

    .form-footer {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 0;
        align-items: center;
        margin-bottom: 0;
    }

    .form-footer label {
        font-size: 12px;
        align-items: center;
    }

    .form-footer a {
        text-align: left;
        font-size: 12px;
        text-align: center;
    }

    .checkbox-container label {
        font-size: 13px;
    }

    .login-box button[type="submit"] {
        width: 100%;
        font-size: 13px;
        padding: 8px 16px;
    }

    .registration-links {
        font-size: 13px;
        margin: 8px 0;
    }

    .name-fields-labels,
    .name-inputs,
    .account-email-labels,
    .account-password {
        flex-direction: column;
        width: 100%;
    }

    .name-fields-labels label:nth-child(1),
    .name-fields-labels label:nth-child(2),
    .name-fields-labels label:nth-child(3) {
        width: 100%;
        padding-left: 0;
        margin-bottom: 4px;
    }

    .name-inputs input#name,
    .name-inputs input#initial,
    .name-inputs input#lastname {
        width: 100%;
        box-sizing: border-box;
    }
    
    .account-input {
        width: 100%;
    }   

    .account-input input {
        width: 100%;
        box-sizing: border-box;
    }

    .name-inputs {
        display: flex;
        flex-direction: column;
        gap: 8px;
        width: 100%;
        align-items: stretch;
    }

    .name-fields-labels {
        display: flex;
        flex-direction: column;
        gap: 34px;
        width: auto;
        margin-right: 8px;
        margin-bottom: 0;
    }

    .name-fields {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        padding-left: 0;
    }

    .name-field-group input {
        width: 100% !important;
        box-sizing: border-box;
    }

    .NPI-Validation-Box {
        width: 90%;
        padding: 20px 24px; 
        border: 2px solid #60A699;
        max-width: 250px;
        border-radius: 15px;
        margin: 0 auto;
        margin-bottom: 40px;
    }

    .NPI-Validation-Box form {
        margin: 0;
    }

    .NPI-Validation-Box label {
        padding: 0;
    }

    .npi-container {
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
        width: 100%;
    }

    .NPI-Validation-Box button {
        padding: 8px 16px;
        font-size: 13px;
        width: 100%;
        margin-top: 10px;
    }

    #providerDetails button {
        padding: 8px 16px;
        font-size: 13px;
        width: 100%;
    }

    #providerDetails a {
        margin-bottom: 20px;
    }

    .register-footer {
        padding: 0;
    }

    .popup {
        width: 85%;
        max-width: 85%;
        padding: 20px;
    }

    .name-inputs input#lastname, .name-inputs input#name {
        width: 100%;
    }

    .name-inputs input {
        font-size: 12px;
        width: 100%;
        box-sizing: border-box;
    }


    .name-inputs {
        display: flex;
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }


    .name-inputs {
        flex-direction: column;
        gap: 10px;
    }

    .name-inputs input#name,
    .name-inputs input#initial,
    .name-inputs input#lastname {
        width: 100%;
        box-sizing: border-box;
    }

    .name-inputs input#name::placeholder { content: 'Nombre'; }
    .name-inputs input#initial::placeholder { content: 'Inicial'; }
    .name-inputs input#lastname::placeholder { content: 'Apellidos'; }

    .account-email-password {
        padding-left: 0;
    }

    .account-input label {
        margin-top: 0;
    }

    .modal-content{
        width: 80%;
    }

    .modal-actions .btn-secondary, .modal-actions .btn-primary {
        padding: 8px 16px;
        font-size: 13px;
    }

    .btn-primary {
        padding: 8px 16px;
        font-size: 13px;
    }

    .modal-header h2 {
        font-size: 16px;
    }

    .modal-subtitle {
        font-size: 14px;
    }

    .modal-label {
        font-size: 14px;
    }

    .modal-form-group input[type="text"] {
        padding: 10px;
    }

}