
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    flex-direction: column;
}

.container {
    width: 100%;
    max-width: 95%;
    margin: 20px;
    padding: 10px;
}

.form-box {
    background-color: white;
    padding: 20px;
    border: 1px solid #e0e0e0;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    margin-bottom: 20px;
}

h2 {
    margin-top: 0;
    color: #007bff;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-weight: bold;
}

.required {
    color: red;
}

input[type="text"],
input[type="password"],
input[type="date"] {
    width: calc(100% - 40px);
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
    display: inline-block;
}

.icon {
    position: absolute;
    right: 25px;
    top: 38px;
    font-size: 18px;
}

.btn {
    width: 92%;
    padding: 10px;
    background-color: #00aaff;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    margin: 10px 0;
    padding: 10px 20px;
}

    .btn:hover {
        background-color: #008ecc;
    }

.calendar-icon::before {
    content: "\1F4C5";
}

@media (min-width: 768px) {
    .form-box {
        padding: 30px;
    }

    .form-group input[type="text"],
    .form-group input[type="password"],
    .form-group input[type="date"] {
        width: calc(100% - 50px);
    }
}


.datetimepicker {
    background-color: #fff;
    border: 1px solid #ced4da;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    color: #495057;
    border-radius: 0.25rem;
    box-shadow: inset 0 1px 2px rgb(0 0 0 / 8%);
}

.datetimepicker:focus {
        border-color: #80bdff;
        outline: 0;
        box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.container {
    flex: 1;
}

.footer-login {
    flex-shrink: 0;
    text-align: center; /* Centers the content horizontally */
    padding: 10px 0;
    background-color: #f8f9fa; /* Light background color */
}

    .footer-login img {
        vertical-align: middle;
    }

    .footer-login .nt-name {
        margin-left: 10px;
        vertical-align: middle;
    }

    .footer-login a {
        color: #007bff; /* Link color */
        text-decoration: none;
    }

        .footer-login a:hover {
            text-decoration: underline;
        }
.text-danger {
    color: red !important; /* !important is used to override other styles */
}

.form-control {
    padding: 5px;
    font-size: 16px;
    box-sizing: border-box;
}
.input-group-text {
    cursor: pointer;
}