
body {
    font-family: 'Montserrat', sans-serif;
    background: url('../images/background.png') no-repeat center center fixed;
    background-size: 100vw 100vh; 
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90vh;
    margin: 0;
    padding: 40px;
}

.login-container {
    background-color: #ffffff;
    padding: 30px;
    width: 90%;
    max-width: 400px;
    border-radius: 25px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-logo {
    width: 50%; 
    max-width: 190px;
    height: auto;
    margin-bottom: 20px;
}

.title {
    font-weight: 800; 
    font-size: calc(1.5rem + 1vw); 
    letter-spacing: 0.23em;
    margin: 0;
    color: #000051;
    width: 100%;
    text-align: center;
    display: inline-block; 
}

.subtitle {
    font-weight: 600; 
    font-size: calc(1rem + 0.2vw); 
    letter-spacing: 0.26em;
    margin: -5px 0 20px 0;
    color: #000051;
    width: 100%;
    text-align: center;
    display: inline-block; 
}

.input-field {
    width: 90%;
    padding: 15px;
    font-size: 15px;
    font-style: normal; 
    font-weight: normal;
    border: 2px solid #000051;
    background-color: #ffffff;
    margin: 0;
    outline: none; 
}

.input-field::placeholder {
    font-style: italic; 
    color: #aaa; 
}

.input-top {
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom: none;
}

.input-bottom {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
}

.login-button {
    width: 100%; 
    padding: 15px;
    background-color: #000051;
    color: white;
    font-weight: 600;
    font-size: calc(1rem + 0.1vw);
    border: none;
    border-radius: 14px;
    cursor: pointer;
    margin-top: 20px;
}

.login-button:hover {
    background-color: #000061;
}
