﻿.login-form-grid {
    display: grid;
    grid-template-columns: 1fr; 
    gap: 10px;
    max-width: 400px;
    margin: 0 auto; /* Center the form */
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: gray;
}

.login-form-grid label {
    display: flex;
    align-items: center;
}

.login-form-grid input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    font-size: 1rem;
    line-height: 1.7;
}

.login_heading {
    display: flex;
    justify-content: center;
    text-align: center;
}

.login_container {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    max-width: 300px;
    margin: 10px auto;
    padding: 1rem;
}

h1 {
    padding: 5px 0;
    font-size: 1.2rem;
    color: #111;
    text-align: center;
}

.submit {
    margin-top: 10px;
}

.heading_image {
    width: 600px;
    height: auto;
}

.button {
    background-color: #4CAF50; /* Green */
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;
    width: 100%;
    height: 100%;
    min-width: 100px;
    overflow: hidden;
    border-radius: 6px !important;
}

.dark_button {
    background-color: #32496F;
}

.light_button {
    background-color: #2C8CCA;
}

.buttonh:hover {
    box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19);
}

.dark_label {
    color: white;
    background-color: #32496F;
    font-family: Calibri;
}

.light_label {
    color: white;
    background-color: #2C8CCA;
    font-family: Calibri;
}

.white_label {
    color: black;
    background-color: white;
    font-family: Calibri;
}

.text_label {
    color: black;
    background-color: white;
    padding: 10px;
    font-size: 14px;
    width: 100%;
}

.text_entry {
    color: black;
    background-color: white;
    padding: 10px;
    font-size: 14px;
    border-radius: 5px;
    outline: none;
    width: 100%;
    border: solid 1px #ccc;
}

.otp_entry {
    color: black;
    background-color: white;
    text-align: center;
    padding: 10px;
    font-size: 14px;
    border-radius: 5px;
    outline: none;
    width: 100%;
    border: solid 1px #ccc;
    height: 48px;
}

table, th, td {
    border: 0px;
}

.footer_base {
    min-height: 72px;
    /* position: fixed;*/
    padding: 10px 10px 0px 10px;
    bottom: 0;
    width: 100%;
    /* Height of the footer*/
    height: 72px;
}

.footer_base_fixed {
    position: fixed;
}

select {
    width: 300px;
}


.password-container {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 70px;
    transform: translateY(20%);
    cursor: pointer;
    color:black
}