body {
    background-color: #000;
    /* Black background */
    color: #fff;
    /* White text */
    font-family: 'Open Sans', sans-serif;
    /* Open Sans font */
    margin: 0;
    padding: 0;
}

.container-fluid {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.brand-logo img {
    width: 80%;
    max-width: 300px;
    margin-bottom: 15px;
}

.brand-title {
    font-weight: 700;
    /* Bold text */
    font-size: 1.5rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.divider {
    width: 48%;
    height: 2px;
    background-color: #fff;
    margin: 0 auto 20px auto;
}

.btn-login,
.btn-sendotp {
    background-color: #000;
    /* White button */
    color: #fff;
    /* Black text */
    border: none;
    border-radius: 20px;
    padding: 5px 20px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 10px;
}

.btn-sendotp {
    margin-top: 5px;
    color: #000;
}

.btn-login:hover {
    background-color: #f0f0f0;
    color: #000;
}

.powered-by {
    position: absolute;
    bottom: 20px;
    margin-top: 50px;
    font-size: 0.8rem;
    color: #999;
}

.powered-by strong {
    color: #fff;
    /* Highlighted text */
}

.border-radius {
    border-radius: 8px;
}

#login-field .form-control {
    background-color: unset;
    /* border: none; */
    box-shadow: unset;
    border: 1px solid #ced4da;
}

#login-field #btnGroupAddon {
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #000;
}

#login-field .input-group-text {
    border: none;
    background: transparent;
    border-bottom: 1px solid #000;
    font-size: 14px;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 3px;
}

.register-btn {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    padding-top: 20px;
}

#register-form {
    width: 90%;
    padding: 10px;
}

#gender .form-check-label {
    color: #000 !important;
    font-size: 14px;
}

#register-form .form-control {
    font-size: 14px;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #000;
    background-color: transparent;
    padding: 0px 3px;
}

#register-form .form-control:focus {
    box-shadow: unset;
}

#gender .form-check-inline {
    margin-right: 10px;
}

.otp {
    background-color: transparent;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #fff;
    color: #fff;
    font-weight: bold;
}

.otp:focus {
    color: #fff;
    background-color: transparent;
    box-shadow: unset;
    border-color: #fff;
}

.font-size-10 {
    font-size: 10px;
}

.font-size-12 {
    font-size: 12px;
}

.font-size-14 {
    font-size: 14px;
}

.font-size-16 {
    font-size: 16px;
}

.font-size-18 {
    font-size: 18px;
}

.font-size-20 {
    font-size: 20px;
}

.font-weight-600 {
    font-weight: 600;
}

.font-weight-800 {
    font-weight: 800;
}

.font-weight-1000 {
    font-weight: 1000;
}

.font-black {
    color: #000;
}

.font-white {
    color: #fff !important;
}

.bg-black {
    background-color: #000;
}