﻿@import url('signup.css');
section {
    background: linear-gradient(135deg, var(--light-gray) 0%, rgba(13, 110, 253, 0.1) 100%);
}

/* Left image */
.left-section img {
    max-height: 380px;
}

/* Signup card styling */
.card {
    border-radius: 12px;
    background: var(--white);
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    border: 1px solid rgba(13, 110, 253, 0.15);
}

/* Input styling */
.form-control {
    border: 1px solid rgba(13, 110, 253, 0.3);
    border-radius: 6px;
    transition: all 0.2s ease-in-out;
}

    .form-control:hover {
        border-color: rgba(13, 110, 253, 0.6);
    }

    .form-control:focus {
        border-color: var(--primary);
        box-shadow: 0 0 6px rgba(13, 110, 253, 0.3);
    }

.input-group-text {
    background: var(--light-gray);
    border: 1px solid rgba(13, 110, 253, 0.3);
    border-left: none;
    cursor: pointer;
}

/* Primary Button */
.btn-primary {
    background: linear-gradient(90deg, var(--primary), var(--navy));
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.2s ease;
}

    .btn-primary:hover {
        background: linear-gradient(90deg, var(--dark-blue), var(--navy));
        transform: translateY(-2px);
    }

/* Left section icons */
.icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    font-size: 13px;
}

/* Responsive fix */
@media (max-width: 767.98px) {


    .card {
        max-width: 100%;
        padding: 20px !important;
    }

    .left-section img {
        max-height: 250px;
    }

    .left-section h3 {
        font-size: 1.5rem;
    }
}

.is-invalid {
    border-color: var(--danger) !important;
    box-shadow: 0 0 6px rgba(220, 53, 69, 0.3) !important;

}