/* OSIRIS BOOKSHOP - Signup Page Styles */


/* Import Main Variables */

@import url('home.css');

/* Signup Section */

.signup-section {
    padding: 4rem 0;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.signup-background-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.signup-gradient-orb {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: orbFloat 20s ease-in-out infinite;
}

.signup-gradient-orb.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--gradient-primary);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.signup-gradient-orb.orb-2 {
    width: 300px;
    height: 300px;
    background: var(--gradient-secondary);
    bottom: 20%;
    right: 15%;
    animation-delay: 5s;
}

.signup-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}


/* Signup Card */

.signup-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--glass-shadow);
}

.signup-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 0;
}

.signup-card:hover .signup-glow {
    opacity: 0.05;
}

.signup-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.signup-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    position: relative;
}

.signup-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.signup-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}


/* Form Styles */

.signup-form {
    position: relative;
    z-index: 2;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.input-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.input-group input {
    width: 100%;
    padding: 1rem 1.2rem;
    background: rgba(42, 42, 42, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    transition: var(--transition-smooth);
    outline: none;
}

.input-group input:focus {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.input-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    border-radius: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    pointer-events: none;
}

.input-group input:focus~.input-glow {
    opacity: 0.3;
}

.password-toggle {
    position: absolute;
    left: 15px;
    top: 55%;
    transform: translateY(-50%);
    cursor: pointer;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition-smooth);
}

.password-toggle:hover {
    color: var(--accent-cyan);
}

.terms-group {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 2rem 0;
}

.terms-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-cyan);
}

.terms-group label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.terms-group a {
    color: var(--accent-cyan);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.terms-group a:hover {
    text-decoration: underline;
}

.signup-btn {
    width: 100%;
    padding: 1.2rem;
    background: var(--gradient-primary);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.signup-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.signup-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--glass-border);
}

.signup-footer p {
    color: rgba(255, 255, 255, 0.7);
}

.signup-footer a {
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.signup-footer a:hover {
    text-decoration: underline;
}


/* Features Section */

.signup-features {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--glass-shadow);
}

.signup-features h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--accent-cyan);
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    background: rgba(42, 42, 42, 0.5);
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.feature-item:hover {
    background: rgba(42, 42, 42, 0.8);
    transform: translateX(-5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: white;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
}


/* Responsive Design */

@media (max-width: 992px) {
    .signup-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .signup-card {
        padding: 2rem 1.5rem;
    }
    .signup-title {
        font-size: 1.8rem;
    }
    .signup-features {
        padding: 2rem 1.5rem;
    }
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    .feature-icon {
        align-self: center;
    }
}


/* Animation for form elements */

.signup-form .input-group {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.signup-form .input-group:nth-child(1) {
    animation-delay: 0.1s;
}

.signup-form .input-group:nth-child(2) {
    animation-delay: 0.2s;
}

.signup-form .input-group:nth-child(3) {
    animation-delay: 0.3s;
}

.signup-form .input-group:nth-child(4) {
    animation-delay: 0.4s;
}

.signup-form .input-group:nth-child(5) {
    animation-delay: 0.5s;
}

.signup-form .terms-group {
    animation-delay: 0.6s;
}

.signup-form .signup-btn {
    animation-delay: 0.7s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}