/* ! header */
header {
    padding-bottom: 2rem;
}
/* ! main */
main {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    height: 500px;
    width: 100%;
    margin-top: 7rem;
}
/* ! contact info container */
.contact-info {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
}
/* ! contact text */
.contact-text {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}
.contact-subtitle {
    font-size: 1rem;
    font-weight: 300;
    color: var(--light-grey);
    margin-top: 0rem;
    line-height: 2rem;
}
.contact-title {
    font-size: 3rem;
    font-weight: 350;
}
/* ! contact cards */
.contact-cards {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
    width: 100%;
}
.contact-card {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 350px;
    height: 100px;
    background-color: var(--charcoal);
    flex-direction: row;
    gap: 1rem;
    padding: 0 1.5rem;
}
/* contact card icon container */
.contact-card-icon {
    display: flex;
    justify-content:center;
    align-items: center;
}
/* contact card info container */
.contact-card-info {
    display:flex;
    justify-content: center ;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
    height: 100%;
    width: 100%;
}
.contact-card-info-title{
    font-weight: 400;
}
.contact-card-info-subtitle{
    font-weight: 300;
    color: var(--light-grey);
}
/* ! form submission */
form {
    background-color: var(--charcoal);
    height: auto;
    width: 500px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    padding: 2rem 6rem;
    gap: 1rem;
}
form label {
    font-weight: 400;
    color: var(--white);
    margin-top: 2rem;
}
.form-input {
    background: transparent;
    border-bottom: 1px solid var(--light-grey);
    font-size: 1rem;
    font-family: "Inter";
    font-weight: 300;
    width: 100%;
    color: var(--light-grey);
    padding-bottom: 5px;
    padding-left: 1px;
}
textarea {
    height: 1.5rem;
    line-height: 1.5rem;
}

input:-webkit-autofill,
textarea:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px var(--charcoal) inset;
  -webkit-text-fill-color: var(--light-grey);
}
.form-input:focus {
    outline:none;
}
form button {
    width: 200px;
    height: 50px;
    color: black;
    background-color: var(--white);
    font-family: "Inter";
    font-size: 0.9rem;
    font-weight: 400;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
    transition: all ease-in-out 100ms;
}
form button:hover {
    opacity: 0.9;
    cursor: pointer;
}
form button:active {
    opacity: 1;
}