
body {
	background-color: #f6e7a3;

    margin: 0;
    padding: 0;
    width: 100%;
}

 
#banner {
    width: 75%;
    height: auto;
    display: block;
	    margin: 0 auto;
		margin-bottom: 100px;

}


#bannerdiv {
	width: 100%;

}  
#formdiv {
    width: 400px;
    margin: 0 auto;

}

#email {
    font-size: 1.2rem;          /* Larger font size */
    padding: 12px 16px;         /* More padding for easier clicking */
    width: 100%;                /* Full width of container */
    box-sizing: border-box;     /* Include padding in width */
    margin-bottom: 12px;        /* Space below input before button */
    border: 2px solid #ccc;     /* Subtle border */
    border-radius: 6px;         /* Rounded corners */
    outline: none;              /* Remove default focus outline */
    transition: border-color 0.3s ease;
    text-align: center;         /* Center text in input box */
}

#email:focus {
    border-color: #227493;      /* Blue border on focus */
}

#submit {
    font-size: 1.3rem;          /* Larger font size */
    padding: 14px 24px;         /* Bigger button padding */
    width: 100%;                /* Full width, aligned below input */
    background-color: #227493;  /* Blue background */
    color: white;               /* White text */
    border: none;               /* Remove default border */
    border-radius: 6px;         /* Rounded corners */
    cursor: pointer;            /* Pointer cursor on hover */
    transition: background-color 0.3s ease;
}

#submit:hover {
    color: black;  }

#submit:disabled, submit:hover:disabled {
    background-color: #d0b959;     /* Greyed out when disabled */
    cursor: not-allowed;        /* Not allowed cursor */
	color: white;
}

#instalogo {
    display: block;
    margin: 50px auto 0;
    width: 50px;
}

