*
{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

body
{
    background-color: #f5f5ff; /* blueish off-white */
    color: #333333; /* charcoal */
}

.container
{
    width: 100%;
    height: 100%;
}

.banner 
{
    width: 100%;
    height: 70px;
    background-color: #333333;
    color: #ffffff;
    font-size: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form 
{
    width: fit-content;
    height: fit-content;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    border-radius: 6px;
    padding: 20px 40px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    font-size: 20px;
}

p 
{
    font-size: 30px;
    font-weight: 600;
    width: 100%;
    height: fit-content;
    text-align: center;
    margin: 10px 0;
}

.form_group 
{
    width: 100%;
    height: fit-content;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 25px;
    position: relative;
}

.form_group input
{
    width: 50%;
    background-color: #ddd;
    border: none;
    outline: none;
    padding: 5px;
    font-size: 20px;
}

.form_group input[type="submit"]
{
    width: 100%;
    height: fit-content;
    background-color: #1d2085;
    color: #ffffff;
    border: none;
    outline: none;
    padding: 10px 20px;
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form_group input[type="submit"]:hover
{
    background-color: #006666;
    color: #ffffff;
}

.form_group p 
{
    width: 100%;
    height: fit-content;
    font-size: 14px;
    margin: 0;
    color: #333333;
}

.form_group p a
{
    color: #1d2085;
    text-decoration: none;

}

.error 
{
    width: 100%;
    height: fit-content;
    color: #8B0000;
    font-size: 18px;
    
}