 body {
    background-color: rgb(239, 223, 255);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Login Wrapper */
.login-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-container {
    width: 100%;
    max-width: 1200px;
}

/* Logo Section */
.logo-section {
    text-align: center;
    margin-bottom: 30px;
}

.logo {
    max-width: 250px;
    height: auto;
    width: 100%;
}

/* Login Card */
.login-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(127, 0, 178, 0.15);
    overflow: hidden;
}

.login-card .card-body {
    padding: 40px;
}

/* Welcome Title */
.welcome-title {
    color: #7F00B2;
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
}

.subtitle {
    text-align: center;
    color: #666;
    font-size: 16px;
    margin-bottom: 30px;
}

/* Form Styles */
.login-form {
    margin-top: 20px;
}

.login-form .form-group {
    margin-bottom: 20px;
}

.login-form label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

.login-form input[type="text"],
.login-form input[type="password"],
.login-form input[type="email"] {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.login-form input[type="text"]:focus,
.login-form input[type="password"]:focus,
.login-form input[type="email"]:focus {
    outline: none;
    border-color: #7F00B2;
}

/* Button Container */
.button-container {
    margin-top: 30px;
    text-align: center;
}

.btn-login {
    background-color: #7F00B2;
    color: white;
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    max-width: 300px;
}

.btn-login:hover {
    background-color: #6a009a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(127, 0, 178, 0.3);
}

.btn-login:active {
    transform: translateY(0);
}

/* Footer */
.pie-pagina {
    background-color: black;
    color: white;
    padding: 20px 0;
    margin-top: auto;
    width: 100%;
}

.footer-content {
    text-align: center;
}

.copyright-text {
    color: white;
    margin: 0;
    font-size: 20px;
}