@import 'colors.css';

.contact-form {
    width: calc(100% - 200px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.label-form {
    width: 100%;
    text-align: left;
    color: var(--primary-color);
    font-size: 24px;
}

.input-form {
    width: 100%;
    height: 60px;
    padding: 20px;
    margin-bottom: 20px;
    font-size: 20px;
    outline: none;
    caret-color: var(--primary-color);
    color: var(--black);
    border-radius: 40px;
    border: 2px solid var(--primary-color);
}

.message.input-form {
    max-width: 100%;
    min-width: 100%;
    min-height: 60px;
    height: 160px;
    resize: vertical;
}

.submit {
    background-color: var(--primary-color);
    border: none;
    color: var(--white);
    cursor: pointer;
}

.more-contacts {
    width: calc(100% - 200px);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}

.contact-section {
    width: 300px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    font-size: 18px;
    border-radius: 20px;
}

.social-media {
    width: 100%;
    height: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}

.social {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 24px;
    border-radius: 50%;
    transition: all 0.5s;
}

.social:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

@media (max-width: 1250px) {
    .contact-form {
        width: 100%;
        padding: 10px;
    }

    .more-contacts {
        width: 100%;
    }
}

@media (max-width: 1000px) {
    .more-contacts {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
        gap: 20px;
    }
}

@media (max-width: 500px) {
    .label-form {
        font-size: 18px;
    }
    
    .input-form {
        width: 100%;
        height: 40px;
        padding: 10px;
        font-size: 18px;
        border-radius: 20px;
    }
}