* {
    font-family: 'Roboto', sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: #fff;
    box-sizing: border-box;
}

h1, h2, h3, h4, h5 {
    margin: 0;
    padding: 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 1rem;
    width: 100%;
    height: 85px;
    background: #FFF;
    box-sizing: border-box;
}

.main-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    padding: 0 2rem;
    box-sizing: border-box;
}

.box-login {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex: 1;
}

.image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex: 1;
}

.ui-float-label {
    width: 300px !important;
}

.input-style {
    padding: 10px 6px !important;
    width: 100% !important;
}

.login-button {
    background: #4FC94D;
    color: #fff;
    border: none;
    width: 80%;
    max-width: 80%;
    padding: 6px 0 !important;
    align-self: flex-start;
    margin-top: -1rem;
    border: none !important;
}

.login-button:hover, .login-button:active, .login-button:focus, .login-button:hover {
    opacity: 0.8;
    background: #4FC94D !important;
    border: none !important;
}

.login-error {
    color: red;
    font-size: 1rem;
    margin-top: -1rem;
    align-self: flex-start;
    max-width: 80%;
}

.link-style {
    color: #000;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    align-self: start;
}

.footer-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    padding: 0.5rem 2rem;
    width: 100%;
    box-sizing: border-box;
}

.text-footer{
    font-weight: bold;
}