:root{
    --white: #fff;
    --main-color: #003F96;
    --darker-main-color: #01347a;
    --background-color: #EFEFEF;
    --darker-background-color: #e2e2e2;
}

body {
    background-color: var(--white);
    font-family: 'Cabin';
    height: 100%;
}


/****************************/
/*           form           */
/****************************/

main {
    position: relative;
    min-height: 100vh;
    max-height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

form {
    color: var(--main-color);
    font-size: 18px;
    height:  100%;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;

}

form h2{
    margin-bottom: 30px;
    text-align: center;
    width: 100%;
}


#contact-container {
    width: min-content;
    padding: 25px 150px;
    margin-top: 141px;
}

.contact-pair{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row;
    width: 100%;
}

.contact-pair label,
.contact-message label {
    display: inline-block;
    width: 95px;
    margin-right: 10px;
    margin-top: 10px;
    margin-bottom: 2px;
}

input[type=text],
input[type=email] {
    padding: 5px;
    width: 200px;
    margin-top: 10px;
}

#subject {
    margin-left: 4px;
}

#contact-subject {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
}

#contact-subject input[type=text] {
    flex-grow: 2;
}

.contact-message {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}

.contact-message textarea {
    resize: none;
    font-size: 14px;
    padding: 5px;
    width: 50em;
    height: 20em;
    margin-top: 10px;
}

input[type=button] {
    margin-top: 20px;
    padding: 10px 10px;
    border-style: solid;
    background-color: var(--darker-main-color);
    box-shadow: inset 0px 4px 4px var(--darker-main-color);
    border: 1px solid var(--darker-main-color);
    font-size: 18px;
    border-radius: 10px;
    color: var(--sec-color);
    transition: all 0.2s;
}

input[type=button]:hover,
input[type=button]:active {
    box-shadow: inset 0px 10px 10px var(--darker-main-color);
    background-color: var(--darker-main-color);
    border: 1px var(--darker-main-color) solid;
    cursor: pointer;
}

.contact_feedback {
    width: 500px;
}

/****************************/
/*           bol            */
/****************************/

#bol1 {
    position: absolute;
    top: -359px;
    left: -500px;
    height: 1000px;
    width: 1000px;
    background-color: #FFC069;
    align-self: flex-start;
    border-radius: 900px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    z-index: -1;

}

#bol2 {
    position: absolute;
    bottom: -500px;
    right: -500px;
    height: 1000px;
    width: 1000px;
    background-color: #003F96;
    align-self: flex-end;
    border-radius: 900px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    z-index: -1;
}
