body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F79540;
    overflow: hidden;
}

.background-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.login-card {
    max-width: 400px;
    padding: 2rem;
    border-radius: 8px;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.login-card h1 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.form-control {
    margin-bottom: 1rem;
}

.btn {
    background-color: #25094C;
    color: white;
}

.btn:hover {
    background-color: #472676;
    color: white;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #25094C;
    margin-bottom: 1rem;
}