@font-face {
    font-family: "IberPangea VAR";
    src: url("/assets/fonts/IberPangeaVAR.woff2") format("woff2"),
    url("/assets/fonts/IberPangeaVAR.ttf") format("ttf");
}

html, body {
    height: 100%;
    margin: 0;
}

body {
    background-color: #eff0f0;
    font-family: "IberPangea VAR", sans-serif;
    --font-family: "IberPangea VAR", sans-serif;
}

button {
    font-family: "IberPangea VAR", sans-serif;
    --font-family: "IberPangea VAR", sans-serif;
}

.section {
    max-width: 1080px;
    margin: auto;
}

.title-green {
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 42px;
    color: #006629;
}

.card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 0;

}

.form {
    display: flex;
}

.logo-avangrid {
    width: 121px;
    height: 30px;
    display: block;
    margin: 32px auto;
}

.label-form label {
    color: #3A3735;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    margin-bottom: 8px;
}

.label-form {
    flex: 1;
    margin: 0 56px 32px;
}

.title {
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 42px;
    color: #38424a;
    margin-bottom: 16px;
}

.image-container {
    position: relative;
    width: 100%;
    height: 670px;
    flex: 1;
}

.full-size-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-right-radius: 24px;
    border-bottom-right-radius: 24px;
}


input[type="text"], input[type="password"] {
    width: 100%;
    padding: 0.75rem 0.75rem;
    margin-top: 4px;
    border: 1px solid #ebe2d9;
    border-radius: 18px;
    font-size: 14px;
    box-sizing: border-box;
}

input[type="text"]:enabled:focus, input[type="password"]:enabled:focus {
    outline: 0 none;
    outline-offset: 0;
    box-shadow: 0 0 0 0.2rem #BFDBFE;
}

#invalidUserError {
    margin: 10px 0;
    color: #B50200;
}

.forgot-password {
    margin: 16px 0;
}

button.button-primary {
    background-color: #008737;
    color: white;
    border: none;
    border-radius: 22px;
    cursor: pointer;
    font-size: 16px;
    width: 115px;
    height: 40px;
}

button.button-primary:hover {
    background-color: #006629;
    border-color: #006629;
}

button.button-primary:disabled {
    background-color: #acaeac;
    border-color: #acaeac;
}

button.button-outline {
    background-color: #fff;
    color: #008737;
    border: 1px solid #008737;
    border-radius: 22px;
    cursor: pointer;
    font-size: 16px;
    width: 115px;
    height: 40px;
}

button.button-outline:hover {
    background-color: #008737;
    color: white;
    border: none;
}

button.button-outline:disabled {
    background-color: #acaeac;
    border-color: #acaeac;
}

.btn-pass {
    font-size: 18px;
    font-weight: 500;
    color: #008737;
    background: white;
    border: none;
    display: block;
    padding: 0;
}

.btn-pass:hover {
    cursor: pointer;
}

.password-container {
    position: relative;
}

.icon-eye {
    width: 16px;
    height: 16px;
}

.password-toggle {
    position: absolute;
    top: 50%;
    right: 0.5rem;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    color: #89837E;
    margin-top: 4px;
}