/* Similar to login.css with same modern design */
/* Copy all styles from login.css and adjust class names */

.register-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fef2f2 0%, #ffffff 100%);
    padding: 2.5rem 1.25rem;
}

.register-card {
    max-width: 1000px;
    width: 100%;
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    background: #ffffff;
    animation: scaleIn 0.4s ease-out;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.register-left {
    width: 50%;
    background: linear-gradient(135deg, #fef2f2, #fff5f3);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem;
}

.register-left img {
    width: 100%;
    max-width: 420px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

.register-right {
    width: 50%;
    padding: 3rem 3rem;
    background: #ffffff;
}

.register-right h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f1f1f;
    font-family: var(--font-heading, 'Playfair Display', Georgia, serif);
    margin-bottom: 0.5rem;
}

.subtitle {
    margin-top: 0.5rem;
    font-size: 1rem;
    color: #555555;
    margin-bottom: 2rem;
}

.input-group {
    margin-bottom: 1.125rem;
}

.input-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.input-group input {
    width: 100%;
    padding: 0.875rem;
    font-size: 0.9375rem;
    border-radius: 10px;
    border: 1px solid #ddd;
    background: #ffffff;
    transition: all 0.2s ease;
}

.input-group input::placeholder {
    color: #9ca3af;
}

.input-group input:focus {
    outline: none;
    border-color: #b91c1c;
    box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.1);
}

.btn-primary {
    margin-top: 0.625rem;
    width: 100%;
    background: linear-gradient(135deg, #b91c1c, #7f1d1d);
    color: #ffffff;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(185, 28, 28, 0.3);
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(185, 28, 28, 0.4);
}

.btn-primary:hover::before {
    width: 400px;
    height: 400px;
}

.btn-primary:active {
    transform: translateY(0);
}

.login-link {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.9375rem;
    color: #555;
}

.login-link a {
    color: #b91c1c;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.login-link a:hover {
    text-decoration: underline;
    color: #7f1d1d;
}

@media (max-width: 900px) {
    .register-card {
        flex-direction: column;
    }

    .register-left,
    .register-right {
        width: 100%;
    }

    .register-left {
        padding: 1.875rem;
    }
}

@media (max-width: 480px) {
    .register-right {
        padding: 2rem 1.5rem;
    }

    .register-right h1 {
        font-size: 1.625rem;
    }
}