﻿
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f2f2f2;
    color: #fff; /* White text */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow-y: auto; /* Enable vertical scrolling */
}

.div-container {
    background-color: #000;
    padding: 10px 20px 20px 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

    .header .logo {
        width: 80px;
        height: auto;
    }

    .header .title {
        font-size: 28px;
        font-weight: bold;
        color: #5f6263;
    }

.form-group {
    margin-bottom: 15px;
}

    .form-group label {
        display: block;
        margin-bottom: 5px;
        color: #dce8da;
    }

    .form-group input {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 20px;
    }
body .form-control:focus {
    border-color: #86b7fe00;
    box-shadow:inherit;
}
.form-group .mandatoryMarker {
    position: absolute;
}

.forgot-password {
    text-align: center;
    margin: 15px 0;
}

    .forgot-password a {
        text-decoration: none;
        color: #5f6263;
    }

        .forgot-password a:hover {
            text-decoration: underline;
        }

.login-button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 20px;
    background-color: #1685ac;
    color: white;
    font-size: 16px;
    margin-top: 50px;
    font-weight: bold;
}

.submit-button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 20px;
    background-color: #1685ac;
    color: white;
    font-size: 16px;
    margin-top: 50px;
    font-weight: bold;
}

.otp-button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 20px;
    background-color: #1685ac;
    color: white;
    font-size: 16px;
    margin-top: 30px;
    font-weight: bold;
}
.form-group input {
    outline: none !important;
}
.new-user {
    text-align: center;
    margin-top: 15px;
}

    .new-user a {
        text-decoration: none;
        color: #5f6263;
    }

        .new-user a:hover {
            text-decoration: underline;
        }

.mr-t-110 {
    margin-top: 110px;
}


.text-danger {
    color: #dc3545; /* Red color */
    font-size: 14px;
}

.required-color {
    color: #dc3545; /* Red color */
}

.my-sm-2 {
    margin-top: 0.5rem !important; /* Adjust margin as needed */
    margin-bottom: 0.5rem !important;
}


.button-container {
    display: flex; /* Use flexbox to align buttons horizontally */
    justify-content: space-between; /* Distribute space between buttons */
    margin-top: 20px; /* Adjust margin as needed */
}

.verify-button,
.back-button {
    width: 48%; /* Equal width for both buttons */
    padding: 10px;
    border: none;
    border-radius: 20px;
    background-color: #1685ac;
    color: white;
    font-size: 16px;
    font-weight: bold;
}

.back-button {
    background-color: #6c757d; /* Adjust background color for back button */
}

.otp-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.otp-input {
    width: 40px;
    height: 50px;
    font-size: 24px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin: 0 5px;
    color: #000;
}

.otp-title {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
}

.help-block ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.help-block li {
    color: red;
    margin-bottom: 0.5rem;
}
body .select2-container--default .select2-selection--single .select2-selection__rendered,
body .form-group input {
    color: #000 !important;
    font-size: 16px !important;
}
body .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #000 transparent transparent transparent;
}