html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.welcome-container {
    position: relative;
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.welcome-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/images/fondo1.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 0;
}

.welcome-content {
    position: relative;
    background: white;
    padding: 32px;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    z-index: 1;
    overflow: auto;
}

.welcome-title {
    text-align: center;
    color: #FF00FF;
    font-weight: bold;
    margin-bottom: 10px;
}

.welcome-subtitle {
    text-align: center;
    margin-bottom: 20px;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.form-error {
    color: red;
    font-size: 14px;
}

.btn-primary {
    width: 100%;
    background: #4f46e5;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.register-links {
    text-align: center;
    margin-top: 20px;
}

.register-links a {
    margin: 0 10px;
    color: #4f46e5;
    text-decoration: none;
}