﻿:root {
    --wasa-blue: #1a4b8e;
    --wasa-light-blue: #e6f0fa;
    --wasa-green: #2e856e;
}

body {
    background: linear-gradient(135deg, #f5f7fa 0%, #e6f0fa 100%);
    min-height: 100vh;
}

.card {
    border-radius: 15px;
    overflow: hidden;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}



.card-header {
    background: var(--wasa-blue);
    padding: 1.5rem;
    position: relative;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.logo {
    height: 80px;
    width: auto;
}

.form-control, .form-select {
    border-radius: 8px;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s;
}

    .form-control:focus, .form-select:focus {
        border-color: var(--wasa-blue);
        box-shadow: 0 0 0 0.25rem rgba(26, 75, 142, 0.25);
    }

.btn-primary {
    background-color: var(--wasa-green);
    border: none;
    border-radius: 8px;
    padding: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

    .btn-primary:hover {
        background-color: #236c58;
        transform: translateY(-2px);
    }

.payment-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    position: relative;
}

.step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: #d1d1d1;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: bold;
}

.step.active .step-number {
    background-color: var(--wasa-green);
}

.step-line {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #e0e0e0;
    z-index: 0;
}

.feature-icon {
    font-size: 2rem;
    color: var(--wasa-blue);
    margin-bottom: 1rem;
}
.animate__animated, .animate__pulse {
    animation: none !important;
    transition: none !important;
    transform: none !important;
}
