body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f4f6f9;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fullcont {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* CONTENEDOR LOGIN */
.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    background: #ffffff;
    border: 3px solid #f77308;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.login-title {
    font-size: 1.4em;
    font-weight: bold;
    white-space: nowrap;
    text-align: center;
    width: 100%;
}

h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #333;
}

form {
    width: 100%;
}

label {
    font-weight: bold;
    display: block;
    margin-top: 12px;
    margin-bottom: 5px;
}

input {
    width: 100%;
    padding: 8px;
    font-size: 0.95em;
    border: 1px solid #aaa;
    border-radius: 4px;
    box-sizing: border-box;
}

.password-container {
    position: relative;
    width: 100%;
}

.password-container input {
    width: 100%;
    padding-right: 35px;
}

.toggle-password {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1em;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toggle-password img {
    width: 20px;
    height: 20px;
}

.login-btn {
    margin-top: 20px;
    width: 100%;
    padding: 10px;
    background-color: #f77308;
    border: none;
    color: white;
    font-size: 1em;
    border-radius: 4px;
    cursor: pointer;
}

.login-btn:hover {
    background-color: #f3b68a;
}

.footer-text {
    text-align: center;
    font-size: 0.85em;
    color: #777;
    margin-top: 15px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .login-layout {
        grid-template-columns: 1fr;
    }

    .side-image {
        display: none;
    }

    .login-container {
        margin: 0 20px;
    }
}