body {
    background-color: #F1F4F9;
    font-family: "Inter", sans-serif;
    margin: 0;
}

.container {
    width: 968px;
    margin: 0 140px 0 140px;
    padding: 36px;
    background-color: white;
    border-radius: 28px;
}

.website-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.login-text {
    font-weight: 400;
    font-size: 2.25rem;
    margin: 0;
}

.login-subtext {
    font-weight: 400;
    font-size: 1rem;
}

.login-container {
    display: flex;
}

.hero-section {
    flex: 1 0 50%;
}

.login-input-section {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
}

.logo-container {
    margin-bottom: 1rem;
}

.auth-active-button {
    background-color: #2B56CA;
    color: #fff;
    border-radius: 20px;
    height: 40px;
    padding: 0 24px 0 24px;
    font-size: 0.875rem;
    font-weight: 500;
    font-family: "Inter", sans-serif;
    border: none;
    cursor: pointer;
}

.auth-active-button:hover {
    background-color: #2145ac;
}

.login-input {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.login-proceed-row {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    justify-content: right;
}

.forgot-password-link {
    text-decoration: none;
    color: #2B56CB;
    margin-left: auto;
    margin-top: 1.25rem;
}

.forgot-password-link:hover {
    color: #203b85;
}

.auth-input-wrapper {
    max-height: 50px;
    height: 50px;
    --padding: 16px;
    --focus-color: #2B56CB;
    position: relative;
    display: flex;
    align-items: center;
}

.auth-input-placeholder {
    position: absolute;
    background-color: white;
    color: gray;
    left: var(--padding);
    padding: 0 4px;
    transition: all 0.1s ease-in;
    pointer-events: none;
}

.auth-input {
    padding: var(--padding);
    border: 1px solid gray;
    outline: none;
    border-radius: 6px;
    flex-grow: 1;
    font-size: 16px;
}

input:is(:focus) {
    border: 2px solid var(--focus-color);
}

input:is(:focus) + .auth-input-placeholder {
    color: var(--focus-color);
}

input:is(:focus, :not(:placeholder-shown)) + .auth-input-placeholder {
    transform: translatey(calc(-1 * var(--padding) - 12px));
    font-size: 14px;
}

.error-container {
    color: red;
    display: flex;
    gap: 0.75rem;
    flex-direction: column;
    margin-bottom: 0.25rem;
}

.error-container > p {
    margin: 0;
}

@media only screen and (max-width: 768px) {
    .login-container {
        flex-direction: column;
    }

    .container {
        margin: 0 36px 0 36px;
    }
}

.invalid-feedback {
    color: red;
    margin-bottom: 1.5rem;
}
