/* Additional CSS for responsiveness */
@font-face {
    font-family: 'industry-meduim';
    src: url('font/Fort Foundry - Industry Medium.otf') format('woff2')

}
body{
    margin: 0px;
    background-color: white;
    font-family: 'industry-meduim';

}

main{
    background-color: white;
}
.main-content {
    min-height: 100vh; /* Set the minimum height to 100% of the viewport height */
    background-color: white;
}
header {

    border-bottom: 3px solid #002d74;
    color: #fff;
    padding:20px;
    z-index: 310;
}

main {
    text-align: center;
}

img {
    height: auto;
    margin: 0 auto;
}

form {
    max-width: 400px;
    margin: 0px auto;
    padding: 20px;
    font-family: 'industry-meduim';
    display: flex;
    flex-direction: column;
}

footer {
    background-color: #002D74;
    color: #fff;
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    width: 100%;

}

/* Style links within the footer */
footer a {
    color: #fff;
    text-decoration: none;

}

/* Apply a hover effect to links within the footer */
footer a:hover {
    text-decoration: underline;
}

/* Style form inputs and labels */
label {
    display: block;
    margin-bottom: 10px;
    color: white;
    text-align: left;
    width: 80%;
    margin-top: 15px;
}
input[type="text"],
input[type="email"],
input[type="password"] {

    padding: 10px;
}

.button{
    display: inline-block;
    line-height: 1;
    padding: 10px 15px;
    width: fit-content;
    border-radius: 3px;
    background: #00A0DF;
    border: 2px solid #00A0DF;

    margin-bottom: 10px;
    color: #fff;
    font-size: 1em;
    font-weight: normal;
    text-decoration: none;
    -webkit-appearance: none;
    font-family: 'industry-meduim';
    margin-top: 15px;
}
/* Hover effect for the submit button */
input[type="submit"]:hover {
    background-color: #0056b3;
}
/* Style the submit button */
input[type="submit"] {
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.grid-col{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 1400px;
}
.tile-container{
    padding: 20px; text-align: center

}
.tile-header{
    font-size: 24px;
    color: #002968;
    font-weight: 400;
}
.tile-body{
    font-size: 1em;
    margin-bottom: 1em;
    line-height: 1.5;
    max-width: 1037px;
}
.error {
    color: rgb(225 29 72);
    text-align: left;
    margin-bottom: 0px
}

.error-border {
    border-color: rgb(225 29 72);
    border-width: 2px;
}
.logo-mobile{
    display: none;
}
/* Add media queries for specific screen sizes */
@media screen and (max-width: 600px) {

footer{
    flex-direction: column;
}
    .logo-mobile{
        display: inline-block;
    }
    .logo-desktop{
        display: none;
    }
    .grid-col{
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    header{
        padding: 10px 0;
    }
}
