#access_form_popup {
border: none;
overflow: hidden;
padding: 0;
background-color: transparent;
}
.popup {
box-sizing: border-box;
width: 522px;
background-color: var(--violet_dark);
color: var(--white);
border-radius: 30px;
padding: 35px 45px 45px;
display: flex;
flex-direction: column;
gap: 25px;
input, input::placeholder {
font-weight: 400;
font-size: 18px;
line-height: 120%;
}
.checkbox_label {
color: var(--violet_light2);
letter-spacing: 0;
}
.checkbox_label_a {
color: var(--green2);
}
.custom-checkbox {
background-color: transparent;
border: 1.5px solid var(--violet_light2);
border-radius: 3px;
}
.custom-checkbox.checked {
background-color: var(--violet_light2);
border: 1px solid #00000000;
}
.custom-checkbox.checked::after {
content: '';
position: absolute;
left: 6.5px;
top: 2px;
width: 5px;
height: 10px;
border: solid var(--violet_dark);
border-width: 0 2px 2px 0;
transform: rotate(45deg);
}
}
@media screen and (max-width: 960px) {
.popup {
width: 421px;
padding: 30px 40px 40px;
input, input::placeholder {
font-weight: 400;
font-size: 15px;
line-height: 120%;
}
}
}
@media screen and (max-width: 768px) {
.popup {
width: 338px;
padding: 20px 30px 35px;
input, input::placeholder {
font-weight: 400;
font-size: 12px;
line-height: 115%;
}
}
}
.popup_header {
font-weight: 600;
font-size: 40px;
line-height: 100%;
letter-spacing: 0;
}
@media screen and (max-width: 960px) {
.popup_header {
font-size: 35px;
}
}
@media screen and (max-width: 768px) {
.popup_header {
font-size: 20px;
line-height: 105%;
}
}
.popup_form {
display: flex;
flex-direction: column;
gap: 14px;
}
.text_input_fields {
display: flex;
flex-direction: column;
gap: 12px;
}
.checkbox_input_fields {
display: flex;
flex-direction: column;
gap: 8px;
}
.row {
display: flex;
gap: 12px;
}
.popup_note {
font-weight: 400;
font-size: 18px;
line-height: 120%;
letter-spacing: 0;
}
@media screen and (max-width: 960px) {
.popup_note {
font-size: 15px;
line-height: 120%;
}
}
@media screen and (max-width: 768px) {
.popup_note {
font-size: 12px;
line-height: 115%;
}
}
.popup_button {
background-color: var(--green2);
width: 100%;
transition: all ease .3s;
font-family: "IBM Plex Sans", serif !important;
}
.popup_button:hover {
background-color: #fff;
color:var(--green2);
}