/* General */
body {
    font-family: Arial, sans-serif;
    background: url("../assets/inmobiliario_page-logo.png") no-repeat center;
    background-size: cover;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.btn-cancelar {
    background-color: #cd3739 !important;
}

/* Form login */
#login {
    box-shadow: 0 4px 15px rgba(225, 225, 225, 1);
    background: rgba(225, 225, 225, 0.9);
    backdrop-filter: blur(5px);
    padding: 0 20px 20px;
    margin: 20px;
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
}

#login h2 {
    text-align: center;
    padding-top: 20px;
    font-size: 2.5em;
}

#login form {
    flex-direction: column;
    display: flex;
    max-width: 100%;
}

#login form label {
    font-weight: bold;
    color: #333;
    margin-top: 15px;
    font-size: 1.1em;
}

#login form input {
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #ddd;
    padding: 12px 15px;
    border-radius: 6px;
    margin-top: 8px;
    font-size: 1em;
}

#login form input::placeholder {
    font-style: italic;
}

#login form input:focus {
    border-color: #4CAF50;
    outline: none;
    box-shadow: 0 0 25px #4caf504d;
}

#login form button {
    transition: transform 0.7s ease, box-shadow 0.7s ease, background-color 0.3s ease;
    background-color: #4CAF50;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 14px 22px;
    border-radius: 6px;
    margin-top: 25px;
    font-size: 18px;
}

#login form button:hover {
    background-color: #45a049;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transform: scale(1.03);
}

#login form button:active {
    background-color: #3e8e41;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transform: scale(0.95);
}

/* Chrome, Safari y Edge */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}

/* Responsive */
@media (max-width: 768px) {
    #login h2 {
        font-size: 1.8em;
    }

    #login .social-icon {
        font-size: 1em;
    }

    #login .social-icon img {
        height: 30px;
        width: 30px;
    }
}

@media (max-width: 480px) {
    #login h2 {
        font-size: 1.5em;
    }
}