.auth-layout {
    font-family: "Inter", sans-serif;
    min-height: 100vh;
    background-color: #f6f6f6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 600px;
}

.auth-main {
    width: 555px;
    background-color: white;
    padding: 60px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(24px, 5vh, 88px);
    margin: 10px 0;
}

.auth-logo {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.auth-logo img {
    width: 273px;
    height: 120px;
}

.auth-logo p {
    font-size: 34px;
    font-weight: 500;
    letter-spacing: 0.04em;
    margin-bottom: 0;
}

.auth-login-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: clamp(24px, 5vh, 88px);
}

.input-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.input label {
    font-size: 14px;
    font-weight: 600;
}

.input-password {
    position: relative;
}

.open-eye,
.close-eye {
    position: absolute;
    right: 12px;
    top: 44px;
}
.open-eye:hover,
.close-eye:hover {
    cursor: pointer;
}

.text-error {
    font-size: 12px;
    font-weight: 400;
    color: #ec4a47;
    margin-bottom: 0px;
    margin-top: 4px;
}

.forgot-password {
    display: flex;
    justify-content: end;
    align-items: center;
}

.forgot-password a {
    font-size: 12px;
    font-weight: 400;
    color: #0b68ea !important;
    text-decoration: underline !important;
    text-underline-offset: 2px;
}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-submit {
    width: 507px;
    height: 44px;
    padding: 8px 16px 8px 16px;
    border-radius: 4px;
    gap: 4px;
    background-color: #2c58a0;
    font-size: 16px;
    font-weight: 600;
    color: white;
}

.btn-outline {
    width: 507px;
    height: 44px;
    padding: 8px 16px 8px 16px;
    border-radius: 4px;
    gap: 4px;
    border: 1px solid;
    border-color: #e6ecf8;
    font-size: 16px;
    font-weight: 600;
    color: #2c58a0;
}

.btn-submit:hover {
    background-color: #234e94;
    color: rgb(218, 217, 217);
}

.btn-outline:hover {
    background-color: #eff0f1;
    color: #234988;
}

.disable-button {
    background-color: #f6f6f6;
    color: #d1d1d1;
}

.group-button {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.toast-success {
    background-color: #eefbf6;
    border: 1px solid #c0f8e3;
}

.toast-error {
    background-color: #fbefee;
    border: 1px solid #f8c1c0;
}

.toast-title {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.toast-title p {
    flex-grow: 1;
    font-family: Inter;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: 0em;
    text-align: left;
    margin-bottom: 0;
}

/*Using this style for toast error*/
.toast-content {
    margin-top: 8px;
    margin-left: 42px;
    font-family: "Inter";
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;
}

.toast-content p {
    margin-bottom: 0;
}
