@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    color: #25282D;
    line-height: normal;
}

.container {
    width: 680px;
    margin: 0 auto;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.tabs-container {
    display: flex;
}

.tab {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 216px;
    width: 100%;
    height: 29px;
    padding: 0 12px 12px;
    cursor: pointer;
    border-bottom: 2px solid #EBF0F7;
}

.tab.active {
    border-bottom: 2px solid #2D5AEE;
}


.info-container {
    display: flex;
    gap: 16px;
}

.cnt {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
}

.country-container {
    max-width: 170px;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none; 
}

.age {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 1px solid #EBF0F7;
    background-color: transparent;
    outline: none;
    border-radius: 4px;
    padding: 10px 36px 10px 12px;
    color: var(--Text-50---Placeholder, #A1A8B3);
    line-height: 20px; 
}

.select {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 1px solid #EBF0F7;
    background-color: transparent;
    outline: none;
    border-radius: 4px;
    padding: 10px 36px 10px 12px;
    color: var(--Text-50---Placeholder, #A1A8B3);
    line-height: 20px; 
}

.select-container {
    position: relative;
}

.select-container::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 4px;
    background: url('./assets/svg/Vector.svg');
    background-position: center;
    top: 18px;
    right: 18px;
}

.age-container {
    max-width: 90px;
}

.gender-container {
    max-width: 170px;
}

.radio-container {
    display: flex;
    gap: 12px;
    align-items: center;
    height: 100%;
}

.radio {
    display: flex;
    gap: 8px;
}

.radio label {
    line-height: 20px;
    color: var(--Gray-50-Text-disabled, #A1A1A1);
    font-weight: 400;
}

.radio input:checked + label {
    color: var(--Text-100---Header, #25282D);
}

.button-container {
    max-width: 170px;
    justify-content: flex-end;
}

.generate-btn {
    width: 100%;
    padding: 10px 20px;
    border: none;
    color: #fff;
    border-radius: 4px;
    background: var(--Primary-50---Main, #2D5AEE);
    cursor: pointer;
}


.input-container {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 4px;
}


.first-container {
    position: relative;
    height: 52px;
    padding: 8px 12px;
    border-radius: 4px;
    background: #EAEFFF;
    & p {
        color: #747B86;
        font-size: 10px;
        font-weight: 400;
        line-height: 16px;
    }
}

.input {
    width: 100%;
    background: #EAEFFF;

    border: none;
    outline: none;

    font-size: 14px;
}

.copy-btn {
    position: absolute;
    right: 12px;
    top: 12px;
    cursor: pointer;
}

.sites-container {
    display: flex;
    width: 100%;
    gap: 20px;
}