@media screen and (min-width: 750px) {
    .message {
        padding: 4px 8px;
    }
    .message p{
        font-size: .9em;
    }
    .login-container {
        width: 520px;
        max-width: 620px;
        height: 344px;
        background-color: white;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    .form-group input {
        padding: 14px;
        border: 1.2px solid #ccc;
    }
    .btn {
        margin-top: 10px;
        font-size: 16px;
    }
    footer {
        width: 700px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
}

@media screen and (min-width: 992px) {
    .login-container {
        width: 720px;
        max-width: 820px;
        height: 330px;
        display: flex;
        flex-direction: row;
        align-items: stretch;
        flex-wrap: nowrap;
        gap: 10px;
    }
    .container-logo {
        margin-top: auto;
        width: 300px;
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: stretch;
        height: 100%;
    }
    .logo {
        width: 150px;
        height: auto;
        margin-left: auto;
        display: block;
    }
    form {
        display: flex;
        flex-direction: column;
        width: 420px;
        gap: 3px;
    }
    .form-group {
        gap: 5px;
        margin-bottom: 0;
    }
    .form-group input {
        padding: 16px;
        border: 1.3px solid #ccc;
    }
    .btn {
       margin-top: 12px;
        font-size: 18px;
    }
    
    .extra-link {
        width: 100%;
        text-align: left;
    }
    
      .extra-link a {
        width: 100%;
    }
    
}