/* style.css */
.rocket-login-container {
    display: flex;
    width: 100%;
    max-width: 900px;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    overflow: hidden;
    margin: 40px auto;
    font-family: 'Poppins', sans-serif;
    min-height: 600px;
    position: relative;
}

/* Responsive Stack */
@media (max-width: 768px) {
    .rocket-login-container {
        flex-direction: column;
        min-height: auto;
    }
    .rocket-left-panel, .rocket-right-panel {
        width: 100% !important;
    }
    .rocket-left-panel {
        padding: 40px 20px;
        min-height: 400px; /* Give space for rocket */
    }
    .rocket-curve { display: none; }
    .rocket-curve-mobile { display: block !important; }
}

/* Left Panel */
.rocket-left-panel {
    width: 45%;
    background: #2d7bf8;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 40px;
    overflow: hidden;
}

.rocket-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rocket-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.rocket-content p {
    font-size: 0.9rem;
    color: #dbeafe;
    margin-bottom: 2rem;
    max-width: 250px;
    line-height: 1.6;
}

.rocket-btn-outline {
    display: inline-block;
    padding: 12px 40px;
    border: 2px solid white;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.rocket-btn-outline:hover {
    background: white;
    color: #2d7bf8;
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.rocket-illustration {
    width: 180px;
    height: 180px;
    margin-top: 30px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Curves */
.rocket-curve {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 80px;
    transform: translateX(98%);
    color: #2d7bf8;
    z-index: 5;
    pointer-events: none;
}
.rocket-curve svg {
    height: 100%;
    width: 100%;
    fill: currentColor;
}

.rocket-curve-mobile {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    transform: translateY(98%);
    color: #2d7bf8;
    z-index: 5;
    pointer-events: none;
}
.rocket-curve-mobile svg {
    height: 100%;
    width: 100%;
    fill: currentColor;
}

/* Right Panel */
.rocket-right-panel {
    width: 55%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 5;
    background: white;
}

.form-title {
    font-size: 2.25rem;
    color: #1f2937;
    margin-bottom: 40px;
    font-weight: 700;
}

/* Inputs */
.rocket-form {
    width: 100%;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group {
    position: relative;
    width: 100%;
}

.input-group input {
    width: 100%;
    background: #f3f4f6;
    border: 2px solid transparent;
    padding: 15px 20px 15px 45px;
    border-radius: 50px;
    outline: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    color: #374151;
    box-sizing: border-box;
}

.input-group input:focus {
    background: #fff;
    border-color: #2d7bf8;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transform: scale(1.02);
}

.input-group .icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    pointer-events: none;
}

.input-group input:focus + .icon, 
.input-group:focus-within .icon {
    color: #2d7bf8;
}

.rocket-forgot-password {
    width: 100%;
    text-align: right;
    margin-top: -10px;
}

.rocket-forgot-password a {
    font-size: 0.85rem;
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.rocket-forgot-password a:hover {
    color: #2d7bf8;
}

/* Button */
#wp-submit {
    background: linear-gradient(to right, #4481eb, #04befe);
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: 10px;
    width: auto;
    min-width: 150px;
    align-self: center;
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

#wp-submit:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(68, 129, 235, 0.4);
    filter: brightness(1.1);
}
#wp-submit:active {
    transform: scale(0.95);
}

.social-login {
    margin-top: 40px;
    text-align: center;
}
.social-login p {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid #d1d5db;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #4b5563;
    transition: all 0.3s;
    font-weight: bold;
}

.social-icon:hover {
    color: #2d7bf8;
    border-color: #2d7bf8;
    background: #eff6ff;
    transform: translateY(-2px);
}