*{
    box-sizing: border-box;

}
body {
    height: 100vh;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
#header{
    background: #2A9CBD;
    width:100%;
    height:120px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#logo{
    position: relative;
    left: -26px;
    max-width: 300px;
}
#content{
    width:100%;
    flex-grow: 1;
    padding: 4rem 0;
}
.container{
    width:100%;
    max-width:1024px;
    margin: 0 auto;
}
#footer{
    background: #595959;
    width:100%;
    height:60px;
    display: flex;
    justify-content: center;
    align-items: center;
}
input[type="submit"]{
    background: #0093b8;
    border: 0;
    padding: 0.7rem 0rem;
    color: #fff;
    font-weight: bold;
    text-align: center;
    border-radius: 10px;
    cursor: pointer;
    transition: .25s all ease;
    margin-top: 2rem;
    font-size: 0.9rem;
    width: 100%;
    max-width: 430px;
}
input[type="submit"]:hover{
    background: #00627a;
}
.card {
    padding: 2rem 1rem;
    background: #e5edf2;
    display: inline-block;
    margin-bottom:2rem;
    max-width: 500px;
}
.logo {
    max-width: 300px;
    width: 100%;
    margin-bottom: 20px;
}
h1 {
    font-size: 2rem;
    color: #333;
}
p {
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
}

/* Container for the custom checkbox */
.custom-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: #333;

}

/* Hide the native checkbox */
.custom-checkbox input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* Custom checkbox design */
.custom-checkbox span {
    width: 20px;
    height: 20px;
    display: inline-block;
    background: #fff;
    border: 2px solid #ccc;
    border-radius: 2px; /* Optional: Makes it slightly rounded */
    margin-right: 8px;
    position: relative;
    transition: all 0.3s ease;

}

/* Checkmark for checked state */
.custom-checkbox span::after {
    content: '';
    position: absolute;
    top: 36%;
    left: 50%;
    width: 8px;
    height: 16px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: translate(-50%, -50%) rotate(45deg) scale(0);
    transition: all 0.2s ease;
    opacity: 0;
}

/* Style when the checkbox is checked */
.custom-checkbox input:checked + span {
    background: #0093b8;
    border-color: #0093b8;

}

.custom-checkbox input:checked + span::after {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(45deg) scale(1);
}

/* Hover effect */
.custom-checkbox:hover span {
    border-color: #0093b8;
}

/* Focus effect for accessibility */
.custom-checkbox input:focus + span {
    outline: 2px solid #0093b8;
    outline-offset: 2px;
}

#footer-menu{
    display: flex;
    justify-content: space-between;
}
#footer-menu a{
    text-decoration: none;
    color:#fff;
    font-size:.8rem;
}
#confirm-error {
    display: none;
    color: red;
    font-size: 14px;
    margin-top: 5px;
}
@media (max-width: 600px) {
    h1 {
        font-size: 1.5rem;
    }
    p {
        font-size: 0.9rem;
    }
}
@media (min-width: 768px) {
    input[type="submit"] {
        background: #0093b8;
        border: 0;
        padding: 0.7rem 0rem;
        color: #fff;
        font-weight: bold;
        text-align: center;
        border-radius: 10px;
        cursor: pointer;
        transition: .25s all ease;
        margin-top: 2rem;
        font-size: 1.1rem;
        width: 100%;
        max-width: 430px;
    }

    .card {
        padding: 2rem 2rem;
        background: #e5edf2;
        display: inline-block;
        margin-bottom:2rem;
        width:100%;
        max-width: 500px;
    }
}