body {
    background: #f5f5f5;
    font-family: "Segoe UI", sans-serif;
    margin: 0;
    background-image: url("../img/torreonjardin2.jpg");
    background-size: contain;
}

h1,h2,h3,h4,h5,h6 {
    color: #1b8519;
    text-align: center;
    width: 100%;
}

.boton {
    height:25px; 
    cursor:pointer;
    opacity: 0.6
}
.boton:hover{
    opacity: 1;
}
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: wait;
}

.loader {
    width: 120px;
    height: 120px;
    /* animation: spin 2s linear infinite; */
}

.hero {
    background: linear-gradient(to bottom, #1b8519, #4caf50);
    color: white;
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.hero img {
    max-width: 90px;
    margin-bottom: 10px;
}

.hero h1 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.hero p {
    font-size: 1rem;
    margin-bottom: 0;
}

.form-section {
    margin-top: -20px;
    padding: 25px 20px;
    background: white;
    border-radius: 10px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.btn-primary {
    background-color: #1b8519;
    border: none;
}

.btn-primary:hover {
    background-color: #156c14;
}

.login-btn {
    position: absolute;
    top: 15px;
    right: 15px;
}

.modal-header {
    background-color: #1b8519;
    color: white;
}

@media (max-height: 600px) {
    .form-section {
        margin-top: 10px;
    }
}