/* RESET & BASE STYLES */
:root {
    --primary: #10B981;
    --primary-dark: #059669;
    --secondary: #34D399;
    --dark: #000000;
    --darker: #0a0a0a;
    --light: #ffffff;
    --gray: #9ca3af;
    --green-transparent: rgba(16, 185, 129, 0.1);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0a0612;
    color: var(--light);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    min-height: 100vh;
}

.account-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.signupcontainer {
    display: flex;
    width: 100%;
    max-width: 1000px;
    border-radius: var(--border-radius);
    overflow: hidden;
    /* box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3); */
    /* backdrop-filter: blur(10px); */
    /* border: 1px solid rgba(16, 185, 129, 0.3); */
}

.signup-form-container {
    flex: 1;
    padding: 10px;
    display: flex;
    flex-direction: column;
    max-height: 100vh;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.signup-form-container::-webkit-scrollbar {
    display: none;
}

.signup-form-container h1 {
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.signup-form-container p {
    color: var(--gray);
    margin-bottom: 30px;
}

/* ACCOUNT TYPE SELECTION */
.account-type-selection {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.account-type-option {
    width: 100%;
}

.account-type-card {
    background: rgba(10, 10, 10, 0.3);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--border-radius);
    padding: 30px 25px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.account-type-card:hover {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
    transform: translateY(-2px);
}

.account-type-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.account-type-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: white;
}

.account-type-card p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.account-type-btn {
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-family: 'Outfit', sans-serif;
}

.account-type-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(16, 185, 129, 0.4);
}

.btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 25px;
    font-family: 'Outfit', sans-serif;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(16, 185, 129, 0.4);
}

.login-link {
    text-align: center;
    color: var(--gray);
    font-size: 0.9rem;
}

.login-link a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.login-link a:hover {
    text-decoration: underline;
}

/* ANIMATIONS */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

.delay-1 { animation-delay: 0.1s; opacity: 0; }
.delay-2 { animation-delay: 0.2s; opacity: 0; }
.delay-3 { animation-delay: 0.3s; opacity: 0; }
.delay-4 { animation-delay: 0.4s; opacity: 0; }
.delay-5 { animation-delay: 0.5s; opacity: 0; }

/* PARTICLES BACKGROUND */
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
}

/* RESPONSIVE DESIGN */
@media (max-width: 900px) {
    .signupcontainer {
        flex-direction: column;
    }
}

@media (max-width: 480px) {

    .signup-form-container h1 {
        text-align: center;
        font-size: 1.5rem;
    }

    .account-type-card {
        padding: 20px 15px;
    }

    .account-type-icon {
        font-size: 2.5rem;
    }

    .account-type-card h3 {
        font-size: 1.3rem;
    }
}

@media screen and (min-width: 627px) {
    .account-type-selection {
        flex-direction: row;
    }
    .signup-form-container {
        padding: 30px 5px !important;
    }
}

@media (max-width: 350px) {
    .signup-form-container h1 {
        font-size: 1.3rem;
    }
    .signup-form-container p {
        font-size: 0.79rem;
    }
    .login-link {
        font-size: 0.8rem ;
    }
}