body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f7f6;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}
.container {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 400px;
    text-align: center;
    box-sizing: border-box;
}
.logo-text {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}
.subtitle {
    color: #00C864;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
}
.form-group {
    text-align: left;
    margin-bottom: 20px;
}
label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}
input[type="text"], input[type="password"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-size: 15px;
    box-sizing: border-box;
    outline: none;
}
input[type="text"]:focus, input[type="password"]:focus {
    border-color: #00C864;
}
button {
    width: 100%;
    background-color: #00C864;
    color: white;
    border: none;
    padding: 14px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}
button:hover {
    background-color: #00a652;
}
.back-link {
    display: inline-block;
    margin-top: 20px;
    color: #00C864;
    text-decoration: none;
    font-size: 14px;
}
.back-link:hover {
    text-decoration: underline;
}
.logo-container {
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-img {
    max-width: 110px; /* Limita el ancho para que calce exacto con tu diseño */
    height: auto;
    display: block;
}

