﻿body {
    background: linear-gradient(130deg, white, #1a1a2e);
    background-size: 500% 100%;
    animation: signupAnmbg 12s ease infinite;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.bginfr {
   
}
@keyframes signupAnmbg {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}
.signup-card {
    background: #fff;
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 40px;
    width: 100%;
    max-width: 420px;
}

.form-control {
    border-radius: 12px;
    max-width:400px;
}

    .form-control:focus {
        box-shadow: 0 0 0 0.2rem rgba(115, 103, 240, 0.25);
        border-color: #7367f0;
    }

.btn-primary {
    background: linear-gradient(45deg, #3a3a3a, #4a4a4a);
    background-size: 200% 200%;
    transition: all 0.5s ease;
    animation: signupAnmbg 10s ease infinite;
    border-radius: 12px;
    background-color: #7367f0;
    border-color: #7367f0;
}

    .btn-primary:hover {
        background-color: #5e50ee;
    }

.form-label {
    font-weight: 500;
}

.text-muted small {
    font-size: 0.8rem;
}

.signup-container {
    width: 100%;
    max-width: 800px;
    margin: auto;
    overflow: hidden;
    position: relative;
    min-height: 400px;
}

.form-wrapper {
    display: flex;
    transition: all 0.5s ease;
}

.form-step {
    width: 100%;
    flex-shrink: 0;
    padding: 2rem;
    opacity: 1;
    transition: opacity 0.2s ease;
}

    .form-step.inactive {
        opacity: 0;
    }

    .form-step.active {
        opacity: 1;
    }

.welcome-container {
    position: relative;
    height: 100%;
    overflow: hidden;
    min-height: 200px; /* Mobil için minimum yükseklik */
}

.welcome-message {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: all 0.5s ease;
    top: 0;
    left: 0;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .welcome-message.inactive {
        opacity: 0;
        transform: translateX(-50px);
    }

    .welcome-message.active {
        opacity: 1;
        transform: translateX(0);
    }

/* Mobil görünüm ayarları */
@media (max-width: 768px) {
    .row {
        flex-direction: column;
    }

    .col-md-5, .col-md-7 {
        width: 100%;
        max-width: 100%;
    }

    .welcome-container {
        min-height: 150px;
        padding: 1rem;
    }

    .welcome-message {
        padding: 1rem;
        text-align: center;
    }

    .signup-container {
        min-height: auto;
    }
}
