.login-section {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.login-content {
    display: flex;
    width: 900px;
    background-color: white;
    border-radius: 32px;
    padding: 40px;
    align-items: flex-start;
    gap: 32px;
    justify-content: space-between;
    border: 1px solid #cbd5e1;
    box-shadow: 0px 1px 2px rgba(90, 90, 110, 0.08), 0 0 0 2px #e4e4e420;
}

.login-main {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.login-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.login-form {
    display: flex;
    flex-direction: column;
    padding: 16px;
    gap: 24px;
    align-items: flex-end;
}

.login-input {
    display: flex;
    flex-direction: column;
    height: auto;
    gap: 8px;
}

.login-footer {
    display: flex;
    align-items: center;
    width: 900px;
    justify-content: space-between;
    padding: 16px 24px;
}

.login-footer-right {
    display: flex;
    gap: 16px;
}

input[type="text"].input-text,
input[type="email"].input-text {
    height: 40px;
    box-sizing: border-box;
    border-radius: 6px;
    border: 1px solid #cbd5e1;
    background-color: #00000005;
    color: #0f172a;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.14px;
    background-repeat: no-repeat;
    padding: 0 12px;
    -webkit-transition: width 0.4s ease-in-out;
    transition: width 0.4s ease-in-out;
    outline: none;
}

input[type="text"].input-text:focus,
input[type="email"].input-text:focus {
    background-color: #0f172a00;
    border: #14b8a6 solid 1px;
    box-shadow: 0px 1px 2px rgba(50, 50, 71, 0.08), 0 0 0 2px #14b8a620;
}

input[type="text"].input-text::placeholder,
input[type="email"].input-text::placeholder {
    color: #5f6d81;
    font-weight: 400;
}

input[type="password"].input-password {
    height: 40px;
    box-sizing: border-box;
    border-radius: 6px;
    border: 1px solid #cbd5e1;
    background-color: #00000005;
    color: #0f172a;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.14px;
    background-repeat: no-repeat;
    padding: 0 12px;
    -webkit-transition: width 0.4s ease-in-out;
    transition: width 0.4s ease-in-out;
    outline: none;
}

input[type="password"].input-password:focus {
    background-color: #0f172a00;
    border: #14b8a6 solid 1px;
    box-shadow: 0px 1px 2px rgba(50, 50, 71, 0.08), 0 0 0 2px #14b8a620;
}

input[type="password"].input-password::placeholder {
    color: #5f6d81;
    font-weight: 400;
}

.btn-primary-m {
    display: flex;
    font-size: 14px;
    line-height: 100%;
    font-weight: 500;
    padding: 0 14px;
    gap: 10px;
    height: 38px;
    align-items: center;
    border-radius: 8px;
    transition: all 0.1s ease-in-out;
    width: fit-content;
    color: white;
}

@media only screen and (max-width: 580px) {
    .login-content {
        width: 100%;
        flex-direction: column;
        padding: 40px 24px;
        border-radius: 0;
        border: none;
        height: 100vh;
        justify-content: flex-start;
    }

    .login-form {
        padding: 0px;
        align-items: flex-end;
        width: 100%;
    }

    .login-input {
        display: flex;
        flex-direction: column;
        height: auto;
        gap: 8px;
        width: 100%;
    }
}
