body {
    font-family: 'Noto Sans KR', sans-serif;
}

.font-poppins {
    font-family: 'Poppins', sans-serif;
}

.radio-button {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.radio-checked {
    fill: #011C2A;
}

.radio-unchecked {
    fill: #E0E0E0;
}

.input-field {
    border: none;
    border-bottom: 1px solid #8d8d8d;
    outline: none;
    padding: 8px 0;
    font-size: 14px;
    width: 100%;
}

.input-field:focus {
    border-bottom-color: #000000;
}

.input-group label {
    color: #8d8d8d;
    transition: color 0.2s ease;
}

.input-group:has(.input-field:focus) label {
    color: #000000;
}

.btn-primary {
    background: #04a9ff;
    color: white;
    padding: 15px 10px;
    border-radius: 5px;
    box-shadow: 0px 0px 14px 0px rgba(0,0,0,0.12);
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
}

.btn-dark {
    background: black;
    color: white;
    padding: 15px 10px;
    border-radius: 5px;
    box-shadow: 0px 0px 14px 0px rgba(0,0,0,0.12);
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
}

.ellipse-bg {
    position: absolute;
    pointer-events: none;
}