
﻿.feedback-header, .Cooperation-header{
    text-align: center !important;
    margin-bottom: 35px;
}

    .feedback-header h1, .Cooperation-header h1{
        font-size: 18px;
        font-weight: 700;
        color: var(--color-primary-dark);
        margin-bottom: 6px;
        font-family: 'YEKANFBld';
        text-align:center;
    }

    .feedback-header p, .Cooperation-header p {
        font-size: 13px;
        color: #777;
        font-family: 'YEKANFLgt';
        text-align: center;
    }


.feedback-form, .Cooperation-form{
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-items: start;
}

.field {
    height: 36px;
    border: 1px solid #e5e5e5;
    border-radius: 7px;
    padding: 0 10px;
    font-size: 13px;
    background: #fff;
    transition: .2s;
    width: 100%;
}

.textarea {
    height: 90px;
    padding: 8px 10px;
    resize: none;
}

.field:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px #0d42b416;
}

.select {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.select-trigger {
    display: flex;
    align-items: center;
    cursor: pointer;
    height: 36px;
    border: 1px solid #e5e5e5;
    border-radius: 7px;
    padding: 0 10px;
    font-size: 13px;
    transition: .2s;
    background: #fff;
}

    .select-trigger::after {
        content: "";
        margin-right: auto;
        width: 6px;
        height: 6px;
        border-right: 2px solid #777;
        border-bottom: 2px solid #777;
        transform: rotate(45deg);
    }

.select-menu {
    position: absolute;
    top: 40px;
    right: 0;
    left: 0;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    display: none;
    overflow: hidden;
    z-index: 20;
    max-height: 180px;
    overflow-y: auto;
}

    .select-menu div {
        padding: 8px 10px;
        font-size: 13px;
        cursor: pointer;
        transition: .15s;
    }

        .select-menu div:hover {
            background: var(--color-primary);
            color: #fff;
        }

.select.open .select-menu {
    display: block;
}

.select.open .select-trigger {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px #0d42b416;
}

.actions {
    margin-top: 4px;
}

.send-code {
    height: 36px;
    padding: 0 16px;
    border: none;
    border-radius: 7px;
    background: var(--color-primary);
    color: #fff;
    font-size: 13px;
    cursor: pointer;
    transition: .2s;
}

    .send-code:hover {
        background: #0d42b4d9;
    }

.verify {
    display: none;
    gap: 10px;
    margin-top: 8px;
    align-items: center;
}

    .verify.active {
        display: flex;
    }

.submit-btn {
    height: 36px;
    padding: 0 16px;
    border: none;
    border-radius: 7px;
    background: #50aa70;
    color: #fff;
    font-size: 13px;
    cursor: pointer;
    transition: .2s;
}

    .submit-btn:hover {
        background: #50aa70e7;
    }

.error {
    color: #e53935;
    font-size: 12px;
    margin-top: 4px;
    line-height: 1.6;
}

input::placeholder {
    text-align: right;
}

textarea::placeholder {
    text-align: right;
}

@media (min-width:641px) {

    .send-code {
        width: 180px;
    }

    .submit-btn {
        width: 180px;
    }
}

@media (max-width:640px) {

    .feedback-form, .Cooperation-form {
        padding: 18px;
    }

    .grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .send-code {
        width: 100%;
    }

    .verify.active {
        flex-direction: column;
        align-items: stretch;
    }

    .submit-btn {
        width: 100%;
    }
}

label{
    font-size:13px;
}
.resume{
    font-size: 13px;
}
