body{
    font-family: 'Montserrat', sans-serif;
}

.material-symbols-outlined{
    font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24;
}

.hero-section{
    height: 340px;
    position: relative;
    overflow: hidden;
}

.hero-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,59,47,.92),
        rgba(115,188,37,.18)
    );
}

.label-form{
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    display: block;
    color: #003b2f;
}

@media(min-width:768px){
    .identity-grid .label-form{
        min-height: 44px;
    }
}

input.input-form,
select.input-form,
textarea.input-form{
    width: 100%;
    min-height: 54px;
    border: 1px solid #cbd5d1 !important;
    border-radius: 16px !important;
    padding: 14px 16px;
    outline: none;
    transition: .3s;
    background: #ffffff;
}

select.input-form{
    appearance: none;
    padding-right: 48px !important;
    background-color: #ffffff;
    background-image:
        linear-gradient(45deg, transparent 50%, #003b2f 50%),
        linear-gradient(135deg, #003b2f 50%, transparent 50%);
    background-position:
        calc(100% - 24px) 50%,
        calc(100% - 16px) 50%;
    background-size: 8px 8px, 8px 8px;
    background-repeat: no-repeat;
}

.search-input{
    padding-left: 52px !important;
}

input.input-form:focus,
select.input-form:focus,
textarea.input-form:focus{
    border-color: #73bc25 !important;
    box-shadow: 0 0 0 4px rgba(115,188,37,.14) !important;
}

.country-combobox{
    position: relative;
}

.country-input-shell{
    position: relative;
    min-height: 54px;
    border: 1px solid #cbd5d1;
    border-radius: 16px;
    background: #ffffff;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    align-items: center;
    overflow: hidden;
    transition: .3s;
}

.country-input-shell.has-country-flag{
    grid-template-columns: 56px minmax(0, 1fr) 44px;
}

.country-input-shell:focus-within{
    border-color: #73bc25;
    box-shadow: 0 0 0 4px rgba(115,188,37,.14);
}

.country-input{
    min-height: 52px !important;
    border: 0 !important;
    border-radius: 0 !important;
    padding: 14px 8px !important;
    box-shadow: none !important;
    background: transparent !important;
}

.country-selected-flag{
    display: none;
    justify-self: center;
    width: 30px;
    height: 22px;
    border-radius: 4px;
    box-shadow: 0 0 0 1px rgba(0,59,47,.12);
}

.country-input-shell.has-country-flag .country-selected-flag{
    display: block;
}

.country-dropdown-toggle{
    color: #003b2f;
    border: 0;
    background: transparent;
    width: 44px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.country-dropdown{
    position: absolute;
    z-index: 30;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    max-height: 260px;
    overflow-y: auto;
    background: #ffffff;
    border: 1px solid #cfe6bf;
    border-radius: 14px;
    box-shadow: 0 16px 40px rgba(0,59,47,.16);
    padding: 8px;
}

.country-option{
    width: 100%;
    border: 0;
    background: transparent;
    color: #003b2f;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    cursor: pointer;
    text-align: left;
    font-weight: 600;
}

.country-option:hover,
.country-option:focus{
    background: #f5faef;
    outline: none;
}

.country-option-flag{
    width: 28px;
    height: 20px;
    flex: 0 0 28px;
    border-radius: 3px;
    box-shadow: 0 0 0 1px rgba(0,59,47,.12);
}

.country-option-name{
    flex: 1;
}

.country-option-code{
    color: #73bc25;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .04em;
}

.country-empty{
    color: #6b7280;
    font-size: 14px;
    padding: 12px;
}

.card-option{
    border: 1px solid #d1d5db;
    padding: 14px;
    border-radius: 14px;
    cursor: pointer;
    transition: .3s;
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
}

.card-option:hover{
    border-color: #73bc25;
    background: #f5faef;
}

.curso-card{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #d1d5db;
    border-radius: 16px;
    padding: 18px;
    transition: .3s;
    cursor: pointer;
    background: #f9fafb;
}

.curso-card:hover{
    border-color: #73bc25;
    transform: translateY(-2px);
}

.checkbox-custom{
    width: 20px;
    height: 20px;
}

.btn-submit{
    width: 100%;
    background: #003b2f;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 14px;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: .3s;
}

.btn-submit:hover{
    background: #73bc25;
    transform: translateY(-2px);
}

.sidebar-card-primary{
    background: #003b2f;
    color: white;
    padding: 30px;
    border-radius: 24px;
}

@media(max-width:768px){

    .hero-section{
        height: 260px;
    }

    .hero-section h2{
        font-size: 36px;
    }

}
