
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: #f4f4f9;
}

.container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.background img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.background img:nth-child(2) {
    width: 300px;
    height: auto;
    right: 0;
    left: unset;
}

.background span.iround {
    background: #1271E6;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    top: 77px;
    right: 270px;
    position: absolute;
}

.login-box {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 350px;
    width: 100%;
    z-index: 1;
    opacity: .85;
}

h2 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.input-group {
    margin-bottom: 2rem;
    text-align: left;
}

label {
    display: block;
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 0.5rem;
}

:focus-visible {
    outline: -webkit-focus-ring-color auto 0px;
}

input {
    width: -webkit-fill-available;
    padding: 0.7rem;
    border: 0;
    border-bottom: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

input:focus,
input:active {

    padding: 0.7rem;
    border: 0;
    border-bottom: 2px solid #2d313f;
    border-radius: 4px;
    font-size: 1rem;
}

.forgot-password {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #007bff;
    text-decoration: none;
    margin-bottom: 30px;
}

.forgot-password:hover {
    text-decoration: underline;
}

.login-btn {
    width: 100%;
    padding: 0.75rem;
    background-color: #ff8500;
    border: none;
    border-radius: 4px;
    color: white;
    font-size: 1rem;
    cursor: pointer;
}

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

.signup-text {
    margin-top: 1rem;
    font-size: 0.9rem;
}

.signup-text a {
    color: #007bff;
    text-decoration: none;
}

.signup-text a:hover {
    text-decoration: underline;
}

.top-20 {
    padding-top: 20px;
}

.form-error {
    font-size: 12px;
    height: 20px;
    color: red;
    font-weight: bold;
}

.hide {
    display: none !important;
}

.input-group {
    position: relative;
}
.passToggle {
    position: absolute;
    bottom: 7px;
    right: 15px;
    user-select: none;
}
.passToggle svg {
    height: 24px;
    width: 24px;
    cursor: pointer;
}
button.login-btn:disabled {
    background: #ff850059;
    color: #fff;
    cursor: unset;
}
.label-form-alert {
    font-size: 12px;
    color: #000;
    font-weight: bold;
    position: absolute;
    bottom: -20px;
    left: 5px;
}
.label-form-alert.error {
    color: red;
}