/* Nome e linha de inputs */
.name {
    display: flex;   
    flex-direction: row; 
    gap: 10px;   
}

.name .form-group {
    flex: 1;   
}

.name .input {
    width: 100%;   
    font-size: 15px; 
}

/* Custom Select */
.custom-select {
    position: relative;
    width: 100%;
}

.custom-select .input {
    width: 100%;
    padding: 10px;
    border: 1px solid #CCCDCC80;
    border-radius: 3px;
    cursor: pointer;
    font-size: 15px;
    transition: border-color 0.2s ease;
}

.custom-select .input:focus {
    border-color: #2563eb;
    outline: none;
}

.custom-select .options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ccc;
    border-radius: 3px;
    display: none; 
    max-height: 150px;
    overflow-y: auto;
    z-index: 100;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.custom-select .option {
    padding: 10px;
    cursor: pointer;
    font-size: 15px;
    transition: background-color 0.15s ease;
}

.custom-select .option:hover {
    background-color: #f0f0f0;
}

/* Labels e textos */
.label-text {
    margin-left: 5px;
    color: #393939;
    font-size: 14px; 
}

/* Rows de inputs */
.row-input {
    display: flex;
    flex-direction: row; 
    gap: 10px;   
}

/* Botões e inputs tipo botão */
.input-button {
    flex: 1;   
    height: 37px;
    background: none;
    color: #000;
    border: 0.5px solid #CCCDCC80;
    border-radius: 3px;
    padding: 0 5px;
    font-size: 15px; 
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.selectedGender,
.selectedAge {
    border-color: #2563eb;
    background-color: #2563eb19;
}

.submit {
    position: relative;
}

.block {
    position: absolute;
    cursor: not-allowed;
    width: 100%;
    height: 42px;
    background-color: rgba(255, 255, 255, 0.50);
    bottom: 0;
    transition: opacity 0.2s ease;
}

/* Responsividade para mobile */
@media (max-width: 480px) {
    .name .input,
    .custom-select .input,
    .custom-select .option,
    .label-text,
    .input-button {
        font-size: 14px;
    }

    .input-button {
        height: 40px;
    }
}
