* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    background: #f8f9fc;
}

/* MAIN CONTAINER */
.signup-container {
    display: flex;
    min-height: 100vh;
}

/* LEFT SIDE */
.signup-left {
    flex: 1;
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    color: #fff;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.signup-left h1 {
    font-size: 40px;
    margin-bottom: 16px;
}

.signup-left p {
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.95;
}

.signup-left img {
    max-width: 420px;
}

/* RIGHT SIDE */
.signup-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

/* CARD */
.signup-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.signup-card h2 {
    margin-bottom: 24px;
}

/* FORM */
.signup-card form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.signup-card input {
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    font-size: 14px;
}

.signup-card input:focus {
    outline: none;
    border-color: #7c3aed;
}

/* BUTTON */
.signup-card button {
    margin-top: 10px;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.signup-card button:hover {
    opacity: 0.9;
}

/* LOGIN LINK */
.login-link {
    margin-top: 16px;
    font-size: 14px;
}

.login-link a {
    color: #7c3aed;
    text-decoration: none;
    font-weight: 600;
}

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

    .signup-left {
        text-align: center;
        align-items: center;
    }

    .signup-left img {
        width: 70%;
    }
}

.password-wrapper {
    position: relative;
}

.password-wrapper input {
    width: 100%;
    padding-right: 45px;
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}