body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #e6f2f8;
}

.background {
    background-image: url('../images/bg-simple.jpg'); /* Add your background image here */
    background-size: cover;
    background-position: center;
    filter: brightness(0.9);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.card-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.card {
    width: 60%;
    height: 95vh;
    background: #ffffff;
    border-radius: 20px;
    display: flex;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.left-section, .right-section {
    flex: 1;
    padding: 40px;
    overflow-y: auto;
}

.left-section {
    background: #ffffff;
}

.left-section h2 {
    margin-bottom: 20px;
    color: #007bff;
}

.left-section label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
}

.left-section input, .left-section select {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    box-sizing: border-box;
    margin-bottom: 10px;
}

.left-section button {
    padding: 12px 25px;
    background-color: #007bff;
    color: #fff;
    font-size: 16px;
    border: none;
    margin-top: 20px;
    cursor: pointer;
    border-radius: 8px;
    width: 100%;
}

.right-section {
    background: #00aaff;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo {
    width: 120px;
    margin-bottom: 15px;
}

.right-section h1 {
    font-size: 50px;
    margin-top: 20px;
}


.popup-success {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 128, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.popup-content {
    background: #ffffff;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 128, 255, 0.4);
    font-size: 20px;
    font-weight: bold;
    color: #007bff;
    animation: fadeInScale 0.3s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
