/* RMIT University Vietnam
Course: COSC2430 Web Programming
Semester: 2023A
Assessment: Assignment 1
Author: Nguyen Thach Khanh Dzi
ID: s3980883
Acknowledgement: Acknowledge the resources that you use here. */
.banner{
    display: none;
}
.contact-page{
    display: flex;
    font-size: 20px;
    background-color: rgba(0, 139, 139, 0.815);
    color: aquamarine;
    font-family: 'century gothic'
}
.contact-page h1{
    margin-left: 1%;
    transition: 0.5s ease;
}
.contact-page h1:hover{
    transform: scale(1.05);

}
#contactform{
    margin: 0;
    display: flex ;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: rgba(48, 196, 176, 0.9);
  width: fit-content;
    margin: auto;
    border-radius: 10px;
    border: solid 3px darkcyan;
}

#contactform h1{
    font-size: 3rem !important;
    margin: 0;
    padding-bottom: 2rem;
    color: aliceblue;
    font-family: 'century gothic';
    font-weight: 150;
}
#form{
    color: aliceblue;
    padding: 2rem;
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: block;
}
.purpose{
    display: flex;
    gap: 10%;
}
#contactpurpose{
    border-radius: 5px;
}
#inputbox{
    display: table-column;
    width: 100%;
    height: 25px;
    border-radius: 5px;
}
#notes{
    display: table-column;
    width: 100%;
    border-radius: 10px;
}

#contactform .checkbox{
    display: flex;
}
#contactform .checkbox p{
    margin: 0;
    padding-left: 10px;
}
.newsletter{
    display: flex;
    justify-content: space-between;
}
.submit{
    display:flex;
    width: 100%;
    justify-content: center;
    padding-top: 20px;
    height: 40px;
    gap: 5%;
}