﻿
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
/*    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);*/
    background: linear-gradient(90deg, #c7c5f4, #776bcc);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.card {
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background: white;
    max-width: 800px;
    width: 100%;
}

.input-group {
    position: relative;
    margin-bottom: 24px;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #6366f1;
    z-index: 10;
}

.animated-input {
    transition: all 0.3s ease;
    padding-left: 48px;
    border: 2px solid #e2e8f0;
}

    .animated-input:focus {
        border-color: #6366f1;
        box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.2);
    }

.btn-primary {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    border: none;
    padding: 14px 28px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 25px rgba(99, 102, 241, 0.4);
    }

    .btn-primary:active {
        transform: translateY(1px);
    }

    .btn-primary::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 5px;
        height: 5px;
        background: rgba(255, 255, 255, 0.5);
        opacity: 0;
        border-radius: 100%;
        transform: scale(1, 1) translate(-50%);
        transform-origin: 50% 50%;
    }

    .btn-primary:focus:not(:active)::after {
        animation: ripple 1s ease-out;
    }

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }

    100% {
        transform: scale(40, 40);
        opacity: 0;
    }
}

.header {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    padding: 30px;
    text-align: center;
}

    .header h2 {
        color: white;
        font-weight: 700;
        font-size: 28px;
        letter-spacing: 0.5px;
        margin: 0;
    }

.form-container {
    padding: 30px;
}

.section-title {
    position: relative;
    padding-left: 20px;
    margin-bottom: 25px;
    font-weight: 600;
    color: #4f46e5;
}

    .section-title::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #6366f1;
    }

.grid-section {
    margin-bottom: 30px;
}

.validation-error {
    color: #ef4444;
    font-size: 14px;
    margin-top: 6px;
    display: block;
}

.phone-prefix {
    position: absolute;
    left: 48px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    z-index: 20;
}

.phone-input {
    padding-left: 70px !important;
}


