@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/*General Config*/
body {
    scroll-behavior: smooth;
    margin: 0;
}

h1, h2, h3, h4 {
    font-family: "Poppins", sans-serif;    
}

p, label, select, a, li {
    font-family: "Inter", sans-serif;        
}
a:hover, input[type=submit]:hover {
    opacity: 0.8;
    text-decoration: none;
}
.grecaptcha-badge { 
    visibility: hidden !important;
}

/*Header*/
header {
    width: 90%;
    padding: 8px 5px 8px 5px;
    box-sizing: border-box;
    border-bottom: 1px solid #eee;
    align-items: center;
    display: flex;  
    margin: auto;
    gap: 20px;
}
header #one {
    width: 70%;
    padding: 10px;
    box-sizing: border-box;
}
header img {
    max-width: 30%;
    height: auto;
}
header #two {
    width: 30%;
    display: flex;
    justify-content: end;
    box-sizing: border-box;
    padding: 10px;
}
header a#contact {
    color: #111827; 
    text-align: center;
    font-size: 18px; 
    font-weight: 600;
    box-sizing: border-box;
    background-color: #5AE4A7;
    padding: 15px 25px;
    border-radius: 10px;  
    text-decoration: none;
}
header a#submissions {
    color: #fff; 
    text-align: center;
    font-size: 18px; 
    font-weight: 600;
    box-sizing: border-box;
    background-color: #3b82f6;
    padding: 15px 25px;
    border-radius: 10px;  
    text-decoration: none;
}

/*Main*/
#main {
    display: flex;
    align-items: center;
    padding: 25px;
    box-sizing: border-box;
    width: 90%;
    gap: 20px;
    margin: 30px auto;
}
#first {
    width: 60%;
}
#first h1 {
    color: #111827;
    font-size: 60px;
    line-height: 1.2em;
    font-weight: 700;
    margin-bottom: 5px;
}
#first h1 span {
    font-style: italic;
}
#first p {
    color: #52525B; 
    line-height: 1.5em;
    text-align: left;
    font-size: 22px;
}
#first a {
    color: #111827; 
    text-align: center;
    font-size: 18px; 
    font-weight: 600;
    box-sizing: border-box;
    background: #5AE4A7;
    padding: 15px 25px;
    text-decoration: none;
    margin-top: 15px;
}
#second {
    width: 40%;
    box-sizing: border-box;
    background: #D6F7E7;
    padding: 30px;
    border-radius: 20px;
    border: 3px #111827 dashed;
}
#second h2 {
    color: #111827;
    font-size: 40px;
    line-height: 1.2em;
    font-weight: 700;
    margin-bottom: 5px;
}
#second label {
    color: #52525B; 
    line-height: 1.5em;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
}
#second input[type=text], #second input[type=email], #second textarea {
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
    border: 1px #111827 solid;
    border-radius: 10px;
}
#second select {
    width: 100%;
    padding: 14px;
    border: 1px #111827 solid;
    border-radius: 10px;
    background-color: #ffffff;
    cursor: pointer;
    box-sizing: border-box;
    font-size: 15px;
    color: #333;
}
::picker(select) {
    border: 2px solid #3b82f6;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 15px;
}
option {
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
}
option:hover {
    background-color: #f3f4f6;
}
#second input[type=submit] {
    color: #5AE4A7; 
    text-align: center;
    font-size: 17px; 
    font-weight: 600;
    box-sizing: border-box;
    background: #111827;
    padding: 15px 25px;
    border: none;
    cursor: pointer;
}

/*Page*/
#page {
    width: 60%;
    margin: auto;
    padding: 20px;
    box-sizing: border-box;
}
#page h1 {
    color: #111827;
    font-size: 50px;
    line-height: 1.2em;
    font-weight: 700;
    margin-bottom: 5px;
    text-align: center;
}
#page h2 {
    color: #111827;
    font-size: 40px;
    line-height: 1.2em;
    font-weight: 600;
    margin-bottom: 5px;
}
#page p, #page li {
    color: #52525B; 
    line-height: 1.5em;
    text-align: left;
    font-size: 17px;
}
#page a {
    color: #52525B; 
}

/*Messages*/
.messagesmain {
    width: 60%;
    padding: 20px;
    box-sizing: border-box;
    margin: auto;    
}
.messagesmain .messages {
    background-color: #D6F7E7;
    border-left: 3px #111827 dashed; 
    border-radius: 20px;
    padding: 20px;
    box-sizing: border-box;
}
.messagesmain .messages h2 {
    color: #111827;
    font-size: 30px;
    line-height: 1.2em;
    font-weight: 600;
    margin-bottom: 5px;
}
.messagesmain .messages h3 {
    color: #111827;
    font-size: 20px;
    line-height: 1.2em;
    font-weight: 500;
    margin-top: 5px;
}
.messagesmain .messages p {
    color: #333!important; 
    line-height: 1.5em;
    text-align: left;
    font-size: 17px;
}
.like-btn {
    background-color: #3b82f6;
    border: none;
    padding:  5px 8px;
    color: #fff;
    font-weight: bold;
    font-size: 15px;
    border-radius: 8px;
    cursor: pointer;
}

/*Footer*/
footer {
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
    text-align: center;
    border-top: 1px #eee solid;
    background-color: #111827;
}
footer p {
    color: #fff;
    font-size: 13px;
    line-height: 1.5em;
}
footer a {
    color: #fff;
    transition: all ease 1s;    
}

/* Responsive Design for Mobile / Tablets */
@media (max-width: 767px) {

/*Header*/
header {
    flex-direction: column;
    width: 100%;
    gap: 0px;
}
header img {
    max-width: 80%;
    margin: auto;
    display: block;
    justify-content: center;
}
header #one {
    width: 100%;
}
header #two {
    width: 100%;
    justify-content: center;
}
header a#contact, header a#submissions {
    padding: 7px 13px;
}

/*Main*/
#main {
    flex-direction: column;
    padding: 0px;
}
#first {
    width: 100%;
}
#first h1 {
    font-size: 35px;
    text-align: center;
    margin-top: 0px;
}
#first p {
    text-align: center;
    font-size: 17px;
}
#first a {
    color: #111827; 
    text-align: center;
    font-size: 18px; 
    font-weight: 600;
    box-sizing: border-box;
    background: #5AE4A7;
    padding: 15px 25px;
    border-radius: 10px;  
    text-decoration: none;
    margin-top: 5px;
    margin-bottom: 5px;
    display: inline-block;
}
.lottieanim {
    max-width: 100%;
}
#second {
    width: 100%;
}
#second h2 {
    font-size: 25px;
    text-align: center;
}
#second p {
    text-align: center;
}
#second label {
    font-size: 15px;
}
#second select {
    font-size: 13px;
}
#second input[type=submit] {
    width: 100%;
}

/*Page*/
#page {
    width: 100%;
    margin-top: 25px;
}
#page h1 {
    font-size: 35px;
    margin-top: 0px;
}
#page h2 {
    font-size: 25px;
}

/*Messages*/
.messagesmain {
    padding: 15px;
    width: 100%;
}
.messagesmain .messages h2 {
    font-size: 25px;
}
.messagesmain .messages h3 {
    font-size: 18px;
}

/*Footer*/
footer p {
    font-size: 12px;
}
}
