.loginView {
    min-height: 100vh;
    background: url('../../assets/login-bg.jpg');
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", sans-serif;
    padding: 2px;
    position: relative;
    overflow: hidden;
}

.loginContainer {
    height: 100vh;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

.loginForm {
    height: calc(100% - 78px);
    display: flex;
    align-items: center;
}

.loginAuth {
    margin: 0 auto;
    max-width: 650px;
    /* width: 650px !important; */
}

.authentication {
    color: #fff;
}

.loginInner1 {
    width: 100%;
}

.logLogo {
    margin-bottom: 20px !important;
}

.mB20 {
    margin-bottom: 20px !important;
}

.textCenter {
    text-align: center !important;
}

.authentication img,
.logoLogin {
    height: 50px;
    object-fit: contain;
    outline: none;
}

.featuredBoxLogin h3 {
    text-align: center;
    color: #fff;
    margin-bottom: 1rem;
    font-size: 21px !important;
}

.mt3 {
    margin-top: 1rem;
}

.otpContainer {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.otpInputWrapper {
    display: flex;
}

.otpInputDiv {
    display: flex;
    align-items: center;
}

.otpInput {
    width: 30px;
    height: 30px;
    padding: 5px;
    margin: 0 10px;
    font-size: 20px;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    text-align: center;
    background: #fff;
    color: #000;
    font-weight: bold;
}

.otpInput:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.otpInput::placeholder {
    color: transparent;
}

.resendLink {
    color: #000000;
    text-decoration: none;
    cursor: pointer;
    margin-left: 5px;
}

.resendLink:hover {
    text-decoration: underline;
}

/* Flash Message Styles */
.masterFlashMessage {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 10;
    margin: 0;
    width: 100%;
}

.flashWrapper {
    width: 100%;
}

.flashMessage {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px 30px 10px 15px;
    margin-bottom: 0;
    border: 0;
    border-radius: 0;
    background-color: #ccc;
    position: relative;
    font-size: 14px;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flashMessageSuccess {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px 30px 10px 15px;
    margin-bottom: 0;
    border: 0;
    border-radius: 0;
    position: relative;
    font-size: 14px;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    background-color: #3c763d;
    border-color: #3c763d;
}

.flashMessageError {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px 30px 10px 15px;
    margin-bottom: 0;
    border: 0;
    border-radius: 0;
    position: relative;
    font-size: 14px;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    background-color: #a94442;
    border-color: #a94442;
}

.flashMessageContent {
    flex: 1;
}

.flashCloseButton {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 24px;
    line-height: 1;
    padding: 0;
    margin-left: 15px;
    cursor: pointer;
    opacity: 0.8;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flashCloseButton:hover {
    opacity: 1;
}

.flashCloseButton span {
    display: block;
    line-height: 1;
}
