
body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    height: 100vh;
}

.login-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    z-index: -1;
}

.card-login {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background-color: white;
    max-width: 500px;
    margin: auto;
}

.card-body-login {

    border: 4px solid #ab13bf;
    border-radius: 15px;
}

.btn-branded-login {
    background: linear-gradient(to right, #6a11cb, #2575fc);
    border: none;
    color: white;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-branded-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.form-control {
    border-radius: 50px;
    padding: 12px 20px;
    border: 1px solid #e1e5ee;
}

.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(106, 17, 203, 0.25);
    border-color: #6a11cb;
}

.login-color {
    color: white;
}

.login-color a {
    color: #ffd700;
    text-decoration: none;
}

.header img {
    max-height: 120px;
    object-fit: contain;
}

h1 {
    color: #333;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.error {
    font-weight: 500;
    margin: 10px 0;
}