body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif !important;
    /* overflow-y: hidden;
    overflow-x: hidden; */
}

/* .card {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
} */

.tot_body {
    background-image: url('/static/wizard/dist/img/entry_bg.svg');
    background-size: cover;
    background-position: center;
    box-sizing: border-box;
    min-height: 100vh;
}

.container {
    height: 100vh;
    /* Full viewport height */
}

.card {
    width: 100%;
    /* Adjust width as needed */
    max-width: 500px;
    /* Example max width */
    padding: 20px;
    /* Adjust padding as needed */
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    border: none;
    /* Center the content horizontally */
}

.login_logo {
    max-height: 45px;
}

.login_header {
    background: radial-gradient(#2C4D8D 0%, #12265E 100%, #fff);
}

.below_text {
    font-size: 13px;
}

/* .form_body {
    background-color: #EFF4FC;
} */

/* form label float*/
.form-container {
    max-width: 500px;
    width: 100%;
    padding: 50px 30px;
    /* background-color: #ffffff; */
    border-radius: 8px;
    /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); */
}

.form-container h2 {
    text-align: center;
    margin-top: 0;
    margin-bottom: 30px;
    color: #333;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group input {

    width: 100%;
    /* padding: 10px; */
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 13px;
    transition: border-color 0.3s ease;
    padding-top: 17px;
    padding-bottom: 8px;
    padding-left: 10px;
}

.form-group label {
    position: absolute;
    left: 12px;
    top: 12px;
    font-size: 14px;
    color: #777;
    transition: top 0.3s ease, font-size 0.3s ease, color 0.3s ease;
}

.form-group input:focus {
    border:1px solid #112154;
    outline: none;
}

.form-group input:hover+label,
.form-group input:not(:placeholder-shown)+label,
.form-group input + label:hover {
    top: -6px;
    font-size: 12px;
    color: #112154;
    background-color: #EBF1FF;
    padding: 0 4px;
    border-radius: 4px;
    left: 8px;
}

.submit-button {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #112154;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #112154;
    color: white;
}

/* form label float*/


#togglePassword,
#togglePassword1 {
    top: 15px;
    right: 10px;
}
input{
    background-color:  #EBF1FF;;
  }