/* auth-style.css */

body, html {
    height: 100%;
    margin: 0;
}
.auth-wrapper {
    display: flex;
    height: 100vh;
}
.auth-left, .auth-right {
    flex: 1;
}
.auth-left {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}
.auth-form-container {
    width: 100%;
    max-width: 400px;
}
.auth-right {
    background: url("/images/acabado.jpg") center center no-repeat;
    background-size: cover;
}

/* Botón color verde */
.btn-primary {
    background-color: #96ac60;
    border-color: #96ac60;
}
.btn-primary:hover,
.btn-primary:focus {
    background-color: #7a8f4a;
    border-color: #7a8f4a;
}

/* Enlaces color verde */
a.text-link, a.text-link:hover, a.text-link:focus,
a {
    color: #96ac60;
    text-decoration: none;
}
a.text-link:hover,
a:hover {
    color: #7a8f4a;
    text-decoration: underline;
}
