* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    min-height: 95vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F9F9F9;
}

.section-main {
    padding: 0 24px;
}

.article-login {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 32px 48px;
    gap: 64px;
    border-radius: 10px;
    border: 2px solid #2D5A96;
    background: #FFF;
    box-shadow: 5px 7px 7px 0px rgba(0, 0, 0, 0.25);
}

.form-action {
    align-self: stretch;
    text-align: center;
}

.form-action a {
    margin-top: 32px;
    text-decoration: none;
    color: #1976D3;
    font-size: 24px;
    font-weight: 600;
}

.div-login-form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 72px;
}

.div-login-form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 64px;
}

.div-input {
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid black;
    padding: 8px 0;
    margin-bottom: 12px;
}

.div-input input[type="text"], .div-input input[type="password"] {
    border: 0;
    flex-grow: 1;
    padding: 4px;
    outline: none;
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

input[type="text"]::placeholder, input[type="password"]::placeholder {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.img-login {
    min-width: 220px;
    max-width: 392px;
    width: 100%;
}

.img-login-logo {
    min-width: 232px;
    max-width: 420px;
    width: 100%;
}

img {
    width: auto;
    height: auto;
}

@media screen and (max-width: 756px) {
    .article-login {
        flex-direction: column;
    }
}
