.evf-container {
    max-width: 500px;
    margin: 0px auto;
}

.evf-step-1,
.evf-step-2,
.evf-step-3 {
    padding: 30px;border-radius:10px;
    background: #2a2a2a;
  
}

.evf-success-message {
    text-align: center;
}

.evf-success-message h3 {
    color: #73BF44;
    font-size: 28px;
}

.evf-step {
    display: none;
}

.evf-step.evf-active {
    display: block;
}

.evf-step h4 {
    margin: 0 0 20px 0;
    font-size: 20px;
    color: #fff;
    text-align: center;
}

.evf-field {
    margin-bottom: 20px;
}

.evf-field label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #ccc;
}

.evf-field input {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #444;
    border-radius: 5px;
    box-sizing: border-box;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: #1a1a1a;
    color: #fff;
}

.evf-field input:focus {
    outline: none;
    border-color: #73BF44;
    box-shadow: 0 0 8px rgba(115, 191, 68, 0.4);
}

.evf-field input::placeholder {
    color: #666;
}

.evf-btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: #73BF44;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s, box-shadow 0.3s;
}

.evf-btn:hover {
    background: #65a83c;
    box-shadow: 0px 0px 10px 0px rgba(162, 255, 0, 0.4);
}

.evf-btn:disabled {
    background: #444;
    color: #888;
    cursor: not-allowed;
    box-shadow: none;
}

.evf-btn-secondary {
    margin-top: 10px;
    background: #444;
}

.evf-btn-secondary:hover {
    background: #555;
    box-shadow: none;
}

.evf-message {
    margin-top: 15px;
    padding: 12px;
    border-radius: 5px;
    text-align: center;
    display: none;
}

.evf-message.evf-success {
    display: block;
    background: rgba(115, 191, 68, 0.2);
    color: #73BF44;
    border: 1px solid #73BF44;
}

.evf-message.evf-error {
    display: block;
    background: rgba(220, 53, 69, 0.2);
    color: #ff6b6b;
    border: 1px solid #dc3545;
}

.evf-email-sent-to {
    text-align: center;
    color: #aaa;
    margin-bottom: 20px;
}

.evf-loading {
    position: relative;
    pointer-events: none;
}

.evf-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 3px solid #73BF44;
    border-top-color: transparent;
    border-radius: 50%;
    animation: evf-spin 0.8s linear infinite;
}

@keyframes evf-spin {
    to { transform: rotate(360deg); }
}

#evf-otp {
    text-align: center;
    font-size: 24px;
    letter-spacing: 8px;
    font-weight: bold;
}