body {
    font-family: Arial;
    display: flex;
    align-items: center;
    height: 100dvh;
    margin: 0;
    overflow: hidden;
    background: #f1f5f9;
}

#container {
    background: rgba(255, 255, 255, 0.15);
    margin: 0 auto;
    max-height: 82dvh;
    width: clamp(15rem, 75vw, 35rem);
    padding: 20px;
}

#frm-login {
    font-size: clamp(1rem, 3dvw, 1.5rem);
}

.title {
    color: #093682;
    display: block;
    width: 100%;
    text-align: center;
    font-size: clamp(1.5rem, 10dvh, 3rem);
}

.subtitle {
    color: #364458;
    display: block;
    font-weight: bold;
    text-align: center;
}

.title, .subtitle {
    margin: 0px 0px clamp(0.5rem, 5dvh, 2rem) 0px;
}

::placeholder {
    color: #888;
    font-style: italic;
}

.input-container {
    margin-bottom: clamp(0.7rem, 2dvh, 1.5rem);
    position: relative;
}

.input-container label {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.input-container input {
    width: calc(100% - 25px);
    padding: 10px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#forgot-password {
    text-align: right;
    cursor: pointer;
    color: #34378f;
}

.link {
    color: #34378f;
    font-weight: bold;
    cursor: pointer;
}

.submit {
    width: 100%;
    background: #16A34A;
    border: none;
    border-radius: 10px;
    color: white;
    cursor: pointer;
    display: block;
    font-size: 16px;
    margin: 0 auto;
    padding: 10px 0px;
}

#message {
    margin-top: 20px;
}

#message label {
    display: block;
    font-weight: bold;
    font-size: 18px;
    margin-top: 10px;
    color: red;
    text-align: center;
}

@media (min-width: 768px) {
    #frm-login input {
        font-size: 22px;
    }
}