@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');

body {
    background: linear-gradient(135deg,#55bfb8, #cbeae8);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    position: relative;
    /*font-family: Arial, Helvetica, sans-serif;*/
    font-family: 'Montserrat', sans-serif;
}

.login-container {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    padding: 2rem;
    max-width: 435px;
    width: 100%;
    z-index: 1;
    position: relative;
}

.login-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.login-header h1 {
    font-size: 1.75rem;
    font-weight: 600;
}

.login-logo {
    margin-bottom: 30px;
}

.login-element {
    margin-bottom: 10px !important;
}

.login-subtitle {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.forgot-password-link, .login-link, .logout-link {
    color: #202020;

}

.forgot-password-link:hover, .login-link:hover, .logout-link:hover {
    color: #56BFB9;
    text-decoration: underline !important;
}

.btn-custom {
    background-color: black;
    color: #ffffff;
    margin-top: 11px;
}

.btn-custom:hover {
    background-color: #606060;
    color: white;
}

footer {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
    color: black;
    font-size: 0.9rem;
}
