body {
    background: white;
    min-height: 100vh;
    margin: 0;
    overflow: hidden;
}

.background-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-repeat: no-repeat;
    background-image: url(../img/fondo.jpg);
    background-size: cover;
}

.diagonal-shape-top {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 50%;
    height: 70%;
    background: linear-gradient(135deg, #215A9A, #4CAF50);
    transform: rotate(-25deg);
}

.diagonal-shape-bottom {
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 50%;
    height: 70%;
    background: linear-gradient(135deg, #215A9A, #4CAF50);
    transform: rotate(155deg);
}

.yellow-dot {
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: #FFD700;
    border-radius: 50%;
}

.dot-1 { top: 15%; left: 12%; }
.dot-2 { top: 8%; left: 25%; }
.dot-3 { bottom: 15%; right: 12%; }

.login-form {
    max-width: 500px;
    margin: 16% auto;
    padding: 20px;
}

.logo {
    width: 200px;
    margin: 0 auto 30px;
    display: block;
}

.form-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 16px;
    color: #333;
}

.form-label {
    color: #333;
    font-size: 14px;
    margin-bottom: 8px;
}

.form-control {
    border: 1px solid #ced4da;
    border-radius: 4px;
    padding: 8px 12px;
    height: 40px;
}

.form-control::placeholder {
    color: #6c757d;
    font-size: 14px;
}

.btn-login {
    background-color: #2E7D32;
    border: none;
    padding: 10px;
    border-radius: 4px;
    color: white;
    width: 100%;
    margin: 20px 0;
}

.forgot-password {
    text-align: right;
    margin: 10px 0;
}

.forgot-password a {
    color: #215A9A;
    text-decoration: none;
    font-size: 14px;
}

.policy-text {
    text-align: center;
    font-size: 14px;
    color: #666;
}

.policy-text a {
    color: #215A9A;
    text-decoration: none;
}

.password-group {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
}

.content-login{
    background: white;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}