﻿body {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh; /* Full viewport height */
    background-color: #f8f9fa;
}

.login-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 400px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);*/
}

.login-container {
    display: flex;
    flex-direction: column;
    align-items: normal;
    width: 100%;
}

.logo-container {
    margin-bottom: 20px;
}


.form-group {
    width: 100%;
    margin-bottom: 15px;
}

.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.btn-block {
    width: 100%;
    padding: 10px;
    font-size: 16px;
}

.form-check {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 10px;
    width: 100%;
    padding-left: 0 !important;
}

.forgot-password,
.terms-links {
    margin-top: 10px;
    width: 100%;
    padding-left: 1.20rem;
}

.pagebottom {
    font-size: 12px;
    text-align: left; /* Ensure the text aligns to the left */
    /*color: #6c757d;*/
    position: absolute; /* This makes the footer stick to the bottom */
    bottom: 0; /* Align it at the bottom */
}
