.login-row .col-6 {
    height: 100vh;
}

.left {
    background: linear-gradient(
            rgba(30, 131, 219, 0.6),
            rgba(30, 131, 219, 0.6)
        ),
        url("../images/login-bg.jpg") no-repeat center / cover;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 32px;
    text-align: center;
    border-radius: 0px 12px 12px 0px;
}

.left .text {
    width: 560px;
    font-weight: 500;
    font-size: 30px;
    line-height: 38px;
    text-align: center;
    color: #ffffff;
}

.left .author-credit .name {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #ffffff;
}

.left .author-credit .prof-title {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: #535862;
}

.right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px 32px;
    margin: 0 auto;
    gap: 20px;
}

.login-wrapper .text {
    width: 556px;
    font-weight: 500;
    font-size: 26px;
    line-height: 38px;
    text-align: center;
    color: rgba(0, 0, 0, 0.5);
}

form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 20px;
}

form label {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #414651;
}

form input[type="email"],
form input[type="password"],
form input[type="text"] {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px 14px;
    gap: 8px;
    width: 399px;
    height: 44px;
    background: #ffffff;
    border: 1px solid #d5d7da;
    border-radius: 14px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #717680;
}

.btn-login {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 16px;
    gap: 6px;
    width: 399px;
    height: 46px;
    background: #1c1c1c;
    box-shadow: 0px 1px 2px rgba(10, 13, 18, 0.05),
        inset 0px 0px 0px 1px rgba(10, 13, 18, 0.18),
        inset 0px -2px 0px rgba(10, 13, 18, 0.05);
    border-radius: 14px;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #ffffff;
}

.text-or {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: #000000;
}

.signup-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 16px;
}

.sso-btn {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 16px;
    gap: 12px;
    width: 399px;
    height: 44px;
    background: #ffffff;
    border: 1px solid #d5d7da;
    border-radius: 14px;

    cursor: pointer;
    transition: 0.2s;

    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #414651;
}

.sso-btn img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.sso-btn:hover {
    background: #f0f0f0;
}
