.form-container {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    font-family: "Roboto Slab";
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: flex;
    gap: 100px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.full-width {
    flex: 1;
}

label {
    margin-bottom: 5px;
    font-size: 14px;
    color: #333;
}

input,
textarea {
    padding: 10px 0;
    font-size: 14px;
    border: none;
    border-bottom: 1px solid var(--near-black);
    outline: none;
    background: none;
}

input:focus,
textarea:focus {
    border-bottom: 1px solid var(--burnt-orange);
}

textarea {
    resize: none;
}

.submit-btn {
    all: unset;
    align-self: flex-end;
    padding: 10px 20px;
    color: #ff6f47;
    cursor: pointer;
    font-size: 14px;
    color: #ED9B20;
    font-family: "Baloo Bhai 2";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 65px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    text-decoration: underline 3px var(--golden-orange);
    text-underline-offset: 6px;
}

.submit-btn:hover {
    color: var(--burnt-orange);
    text-decoration: underline 4px var(--burnt-orange);
}

.link {
    position: relative;
    width: fit-content;
    margin: 0 auto;
}

.link svg {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    fill: white;
    margin: 0 5px;
}

.link path {
    scale: 0.6;
    transform-origin: center;
}

@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
    }
}