.main_container {
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    /* background: linear-gradient(to bottom, #006B82, #034093); */
    position: relative;
    overflow: hidden;
    background-image: url('/images/Rectangle 30.png');
    background-size: cover;
    background-position: center;
}


.custom-line-spacer {
    width: 100;
    height: 10rem;
    border: 3px solid red;
}

.dash-logo-container {
    position: absolute;
    top: 0;
    transform: translateX(50%);
    right: 50%;
    border-radius: 0 0 30px 30px;
    background-color: white;
    padding: 1rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.generic_txt_centered {
    text-align: center;
    color: white;
    margin-bottom: 0.75rem;
    font-size: 13px;
}

.gen-form-input {
    border-radius: 2rem;
    padding: 0.4rem;
    text-align: center;
    background-color: white;
    margin-bottom: 0.5rem;
    width: 100%;
    font-size: 14px;
}

.gen-form-input-label {
    color: white;
    font-weight: bold;
    font-size: 14px;
    /* text-align: center; */
    margin-bottom: 0.25rem;
}

.input-form-bx {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.login-btn {
    border-radius: 5rem;
    background-color: rgb(20, 167, 203);
    color: white;
    text-align: center;
    padding: 0.5rem;
    width: 80%;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 0.75rem;
    text-decoration: none;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.login-btn-bx {
    width: 100%;
    text-align: center;
    margin-top: 0.5rem;
}

.login-container {
    display: flex;
    align-items: center;
    justify-content: center;
    /* border: 2px solid red; */
    margin-top: 5rem;
}

.login-links {
    text-align: center;
    margin-bottom: 0.5rem;
}

.login-links a {
    color: white;
    text-decoration: none;
}

.login-fields-sub-container {
    max-width: 360px;
    margin: auto;
}

.dash-logo-container-img {
    max-width: 220px;
    width: 100%;
}

.dash-logo-container .dash-logo--login-banner img {
    display: block;
    max-width: 220px;
    width: 100%;
    height: auto;
}

.dash-logo-right {
    position: absolute;
    right: 3rem;
    top: 1rem;
    width: 100%;
    max-width: 120px;
}

.dash-logo-right .dash-powered-by {
    text-align: right;
    color: rgba(255, 255, 255, 0.92);
}

.dash-logo-right .dash-powered-by__label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 4px;
}

.dash-logo-right .dash-gcx-wordmark {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.dash-logo-right .dash-gcx-wordmark__logo {
    font-family: var(--font-title), Montserrat, sans-serif;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1;
    color: #fff;
}

.dash-logo-right .dash-gcx-wordmark__logo span {
    color: #5cc3dd;
}

.dash-logo-right .dash-gcx-wordmark__tagline {
    font-family: var(--font-body), Lato, sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 640px) {
    .login-container {
        margin-top: 236px;
    }
}

@media (max-width: 475px) {
    .dash-logo-container {
        min-width: 90%;
        max-width: 90%;
    }
}

/* New Media Query for iPhone SE (375px x 667px) */
@media (max-width: 375px) and (max-height: 667px) {
    .main_container {
        overflow: auto;
    }
    
}

@media (max-width: 900px) {
    .dash-logo-right {
        display: none;
    }
}

@media (min-width: 640px) {
    .login-container {
        margin-top: 5rem;
    }
}