body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #006fc4;
    color: white;
}

/* Header with logo aligned to the top left */
header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 20px 20px 0px 20px;
    box-shadow: 0px 0px 1px;
}

.logo img {
    width: 240px;
    height: auto;
    margin-left: 60px;
}
.logo_text{
    margin-top: 5px;
    margin-left:60px; 
    font-size: 18px; 
    font-weight: bold; 
    color: white;
}

/* Main content container */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 100px); 
    /* height: 100vh;  */
    /* height: 90vh;  */
    text-align: center;
}

h1 {
    font-size: 2.5rem;
    margin: 20px 0;
}

.content-text {
    font-size: 1.2rem;
    margin: 10px;
    max-width: 600px;
}

.btn {
    margin-top: 20px;
}

.btn a {
    text-decoration: none;
    font-size: 1rem;
    padding: 10px 20px;
    background-color: white;
    color: #006fc4;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.btn a:hover {
    background-color: #005bb5;
    color: white;
}

/* Footer styles */
footer {
    background-color: #002c54;
    color: #bbb;
    padding: 20px 40px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: 1px solid #444;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.footer-bottom p {
    margin: 0;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background-color: white;
    color: #006fc4;
    text-align: center;
    line-height: 35px;
    border-radius: 50%;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s, transform 0.2s;
}

.social-icons a:hover {
    background-color: #005bb5;
    color: white;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .social-icons {
        margin-top: 10px;
    }

    .logo img {
        width: 240px;
        height: auto;
        margin-left: 0px;
    }
    .logo_text{
        margin-left:0px; 
    }
}
.footer-wrap{
    max-width: 95%;
    margin: 0 auto;
}

.alert.alert-danger {
    background-color: #db0707;
    padding: 10px;
}

.alert.alert-danger li {
    list-style: none;
}

.alert.alert-success {
    background-color: #01b101;
    padding: 10px;
}
