* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Inter, serif;
}

body {
    background: #EAEBED;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin-top: 0;
}

.login {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    border: 1px solid rgba(0, 105, 137, 0.20);
    background: #FFF;
    width: 35%;
}

.login img {
    width: 20%;
    padding: 16px 0 0 0;
}

.login h1 {
    padding-top: 12px;
    color: #1A1A1A;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
}

.login p {
    padding: 14px 0;
    color: #6B6B6B;
    text-align: center;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.login form {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 8px;
    padding: 0 20px 0;
}

.login form label {
    color: #1A1A1A;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 14px;
    padding: 4px;
}

.login form input {
    color: #6B6B6B;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 6px 12px;
    align-items: center;
    border: none;
}

.login form button {
    border-radius: 8px;
    background: #006989;
    display: flex;
    padding: 10px 0;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    color: #FFF;
    text-align: center;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    border: none;
    cursor: pointer;
}

.login a:nth-child(1) {
    color: #006989;
    text-decoration: none;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.login a {
    text-decoration: underline;
    color: #6B6B6B;
    text-align: center;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    padding-bottom: 14px;
}

@media (max-width: 600px) {
    body {
        padding: 16px 0;
    }

    .login {
        width: min(100%, 420px);
        margin: 0 16px;
        padding: 16px 0 24px;
    }

    .login img {
        width: 35%;
    }

    .login h1 {
        font-size: 22px;
    }

    .login p {
        font-size: 14px;
        padding: 12px 16px 18px;
    }

    .login form {
        padding: 0 16px 16px;
        gap: 12px;
    }

    .login form input {
        padding: 10px 12px;
    }

    .login form button {
        padding: 12px 0;
    }

    .login a,
    .login a:nth-child(1) {
        font-size: 14px;
        padding-bottom: 12px;
    }

    img,
    svg {
        max-width: 100%;
        height: auto;
    }
}