body {
    background-image: url(../img/backgrounds/backgrounds-tecnopreco3.webp);
    font-family: 'Alegreya Sans SC', sans-serif;
    margin: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 400px;
    margin: 20px;
}

.login-container img {
    max-width: 200px;
    margin-bottom: 20px;
}

.top-right, .bottom-left {
    position: absolute;
    width: 150px;
    height: 150px;
    background-color: #dbe7f3;
    opacity: 0.5;
}

.top-right {
    top: -75px;
    right: -75px;
    transform: rotate(45deg);
}

.bottom-left {
    bottom: -75px;
    left: -75px;
    transform: rotate(45deg);
}

.form-control {
    border-radius: 5px;
}

.btn-primary {
    background-color: #064a86;
    border-color: #064a86;
    padding: 10px;
    font-size: 16px;
}

.btn-primary:hover {
    background-color: #043c6f;
    border-color: #043c6f;
}

.small-link {
    color: #064a86;
    text-decoration: none;
    font-size: 14px;
}

.small-link:hover {
    color: #043c6f;
    text-decoration: underline;
}

.alert {
    margin-bottom: 20px;
    font-size: 14px;
}

.form-label {
    font-size: 14px;
}
    