@import url('variables.css');
.container {
    padding: 100px 0 80px
}
#contact-wrapper {
    max-width: 600px;
    margin: 40px auto;
    padding: 24px;
    font-family: Arial, Helvetica, sans-serif;
    width: 100%;
}
#contact-wrapper label {
    font-family: 'General Sans Semibold';
    font-size: var(--fs-ssm);
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
}
.field-group {
    margin-bottom: 16px;
}
.field-group input,
.field-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 15px;
}
.checkboxes label {
    font-family: 'General Sans Semibold';
    font-size: var(--fs-btn);
    display: block;
    font-weight: 400;
    margin-bottom: 6px;
}
.actions {
    text-align: right;
}
.actions button {
    font-family: 'General Sans Medium';
    font-size: var(--fs-subtitle);
    width: 100%;
    height: auto;
    padding: 15px 40px;
    display: flex;
    text-align: center;
    align-content: center;
    justify-content: center;
    align-items: center;
    color: #000;
    background-color: #00ff51;
    border-radius: 50px;
    border: none !important;
    cursor: pointer;
}
.actions button[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}
#success {
    display: block;
    margin-bottom: 16px;
    font-weight: 600;
}
#error {
    display: block;
    margin-bottom: 16px;
    font-weight: 600;
    font-family: 'General Sans Medium';
    font-size: var(--fs-ssssm);
}
.req {
    color: #00ff51;
    margin-left: 2px;
}
.ref-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 20px 0 30px;
}
.ref-btn {
    padding: 14px 28px;
    border-radius: 26px;
    border: 2px solid transparent;
    background: #0d0d0d;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.15s ease-in-out;
}
.ref-btn.active {
    background: #00ff6a;
    color: #0d0d0d;
}
#contact-wrapper .form-title {
    font-weight: 600;
    font-family: 'General Sans Semibold';
    font-size: var(--fs-xlg-subtitle);
    color: #fff;
    line-height: 2em;
}