﻿h2 {
    font-weight: 800;
    text-align: center;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

button {
    width: 90%;
    margin-top: 20px;
    border-radius: 20px;
    border: 1px solid #5C0120;
    background-color: #5C0120;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: bold;
    padding: 12px 45px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 80ms ease-in;
}

    button:active {
        transform: scale(0.95);
    }

    button:focus {
        outline: none;
    }

    button.ghost {
        background-color: #fff;
        color: #5C0120;
        font-weight: 1000;
    }

.site {
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px 50px;
    height: 100%;
    text-align: center;
}

input, textarea {
    border: none;
    padding: 12px 15px;
    margin: 8px 0;
    width: 100%;
    border-bottom: 2px solid #dee2e6;
    border-radius: 0.375rem;
    background-clip: padding-box;
    font-size: 20px;
    font-weight: 400;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

    input:focus {
        color: #495057;
        background-color: #fff;
        border-bottom-color: #5C0120;
        outline: 0;
        box-shadow: 2px 0.2rem 0.2rem 0.2rem rgba(92, 1, 32, 0.8);
    }

    textarea:focus {
        color: #495057;
        background-color: #fff;
        border-bottom-color: #5C0120;
        outline: 0;
        box-shadow: 2px 0.2rem 0.2rem 0.2rem rgba(92, 1, 32, 0.8);
    }

    input::placeholder {
        color: #6c757d;
        opacity: 1;
    }

    input:disabled,
    input[readonly] {
        background-color: #e9ecef;
        opacity: 1;
    }

.contact_site {
    margin: 50px auto;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    position: relative;
    overflow: hidden;
    width: 1000px;
    max-width: 100%;
    min-height: 500px;
    display: flex;
}

@media only screen and (max-width: 800px) {
    .site {
        padding: 0 20px;
    }
}

@media only screen and (max-width: 690px) {
    .contact_site {
        width: 90%;
        min-height: 475px;
        flex-direction: column;
        margin-bottom: 30px;
    }

    .col-5{
        width: 100%;
        height: 350px;
    }

    .col-7 {
        width: 100%;
    }

    .site {
        padding: 0 5px;
    }

    input {
        font-size: 12px;
        font-weight: 500;
    }

    textarea {
        font-size: 12px;
        font-weight: 500;
    }

    button{
        margin: 10px 0;
    }
}
