html,
body {
    height: 100%;
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f5f5f5;
}

.form-signin {
    width: 100%;
    max-width: 400px;
    padding: 30px;
    /* max-height: 700px; */
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* .form-signin .form-control {
    padding: 12px;
    font-size: 16px;
    border: 0px solid #ddd;
    width: 100%;
    margin-bottom: 15px;
    transition: border-color 0.3s ease;
} */

.form-signin button[type="submit"] {
    padding: 12px;
    font-size: 18px;
    border: none;
    /* background-color: #007bff; */
    background: linear-gradient(to right, #fcba2b, #fcfc2b);
    color: #fff;
    cursor: pointer;
    border-radius: 30px;
    transition: background-color 0.3s ease;
    width: 400px;
}

.form-signin button[type="submit"]:hover {
    background-color: #0069d9;
}

.submit-button {
    text-align: center;
    width: 400px;
}

.text-center p{
    align-items: right;
    margin-top: 10px;
    text-align: center;
    font-weight: bold;
}

.text-center a {
    /* text-decoration: none; */
    color: #007bff;
}

/* .message-container {
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 9999;
    text-align: center;
    width: 100%;
} */

/* .message {
    position: relative;
    margin-bottom: 10px;
    padding: 10px;
    background-color: #ffc107;
    color: #333;
    font-weight: bold;
    border-radius: 5px;
    display: inline-block;
}

.message-close {
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 14px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
} */

.row {
    display: flex;
    align-items: center;
    padding: 1px;
}

.row i {
    color: gray;
}


.input-box{
    background-color: white !important;
    border: none;
    width: 300px;
    padding: 15px;
    outline: none;
}


.input-box:focus {
    outline: none; 
    border: none;  
}


#password-eye{
    margin-left: 15px;
    cursor: pointer;
}

/* .alert {
    position: fixed;
    top: 0px;
    left: 40%;
    background-color: #f44336;
    color: white;
    padding: 15px;
    border-radius: 5px;
    z-index: 1000;
    display: none;
}

.alert.show {
    display: block;
} */


.alert {
    position: fixed;
    /* top: 0px; */
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f44336;
    color: white;
    padding: 5px;
    border-radius: 5px;
    z-index: 1000;
    /* opacity: 0.8; */
    opacity: 1; 
    /* transition: opacity 1s ease, top  0.5s ease; */
    transition: opacity 0.7s ease, top  0.7s ease;
    border-radius:  40px;
    width: 250px;
    height: 20px;

}

.alert.show {
    display: block;
    opacity: 0; 
    top: 0px; 
}


.alert.hide {
    opacity: 0;
    transition: opacity 2s ease;
}



.otp-row {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
}



.otp-box {
    width: 30px;
    height: 40px;
    font-size: 20px;
    text-align: center;
    margin-right: 5px;
}

.otp-button-class{
    display: flex;
    justify-content: center;
}