@import url('./base.css');

.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 4rem;
}

.contact-title {
    font-size: 2rem;
}

.form-container {
    width: 100%;
    background-color: #335FF9;
    margin-top: 2rem;
}

.form {
    width: 30%;
    /* background-color: orange; */
    margin: 0 auto;
    padding: 4rem 0;
    display: flex;
    flex-direction: column;
}

.form-message {
    text-align: center;
    color: #F9CD33;
    font-size: 1.75rem;
    font-weight: 600;
}

label {
    font-size: 1.5rem;
    font-weight: 500;
    color: #ffffff;
    margin-top: 2rem;
}

input,
textarea {
    border: none;
    min-height: 4rem;
    padding: 1rem;
    border-radius: .5rem;
    margin-top: 1rem;
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    border: none;
    height: 4rem;
    padding: 1rem;
    border-radius: .5rem;
    cursor: pointer;
    width: 100%;
}

.select-wrapper {
    position: relative;
    margin-top: 1rem;
}

.select-wrapper::after {
    content: "▼";
    font-size: 1.25rem;
    color: #333;
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.btn-container {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
}

.submit-btn {
    background-color: #ffffff;
    color: #335FF9;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 12rem;
}

.submit-btn .right-arrow {
    display: block;
    background: url('../icons/right-arrow-28px-blue.svg') no-repeat center;
    width: 28px;
    height: 28px;
    margin-left: .5rem;
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

footer {
    margin-top: 15rem;
}

.pot {
    display: none;
}