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

/* Global Body Style (merged + enhanced) */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

/* Shared Container */
.container {
    display: flex;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    width: 100%;
    overflow: hidden;
}

/* Left Section (Signup / Image Section) */
.left-section {
    flex: 1;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    min-height: 500px;
}

.illustration {
    width: 100%;
    max-width: 300px;
    height: 300px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

/* Signup Gradient Panel */
.signup-section {
    background: linear-gradient(135deg, #89CFF0 0%, #89CFF0 100%);
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

/* Right Section (Login Form) */
.right-section {
    flex: 1;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Headers */
h1 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

/* Form Groups */
.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group input {
    width: 100%;
    padding: 12px 40px 12px 15px;
    border: none;
    border-bottom: 2px solid #e0e0e0;
    font-size: 14px;
    color: #333;
    background: transparent;
    transition: border-color 0.3s ease;
}

.form-group input::placeholder {
    color: #bbb;
}

.form-group input:focus {
    outline: none;
    border-bottom-color: #5b9fd8;
}

/* Form Icons */
.form-icon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #bbb;
    font-size: 18px;
}

/* Checkbox Row */
.checkbox-group {
    display: flex;
    align-items: center;
    margin: 15px 0 30px 0;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    cursor: pointer;
}

/* Login Button */
.login-btn {
    width: 100%;
    padding: 12px 40px;
    background: #5b9fd8;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.login-btn:hover {
    background: #4a8ec4;
}

.signup-button {
   
    width: 70%;
    padding: 12px 40px;
    background: #000000;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}


.signup-button:hover {
    background: #3e3e50;       /* slightly lighter */
    transform: translateY(-2px);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.25);
}

.signup-button:active {
    transform: scale(0.97);
}

/* Divider Line */
.divider {
    display: flex;
    align-items: center;
    margin: 30px 0;
    font-size: 14px;
    color: #999;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e0e0e0;
}

.divider span {
    margin: 0 15px;
}

/* Social Buttons */
.social-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.social-btn:hover {
    transform: translateY(-2px);
}

.facebook { background: #3b5998; }
.twitter { background: #1da1f2; }
.google { background: #dc3545; }

/* Footer */
.footer-link {
    text-align: center;
    margin-top: 30px;
}

.footer-link a {
    color: #333;
    text-decoration: underline;
    font-size: 14px;
}

.footer-link a:hover {
    color: #5b9fd8;
}

/* Signup Page Social Section */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    border: none;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}

.social-icon.facebook { color: #1877f2; }
.social-icon.twitter { color: #1da1f2; }

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .left-section {
        min-height: 300px;
    }

    .right-section {
        padding: 40px 30px;
    }

    h1 {
        font-size: 28px;
    }

    .signup-section {
        display: none;
    }
}


.signup-container {
    /* width: 900px;
    margin: auto;
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    background: white;
    box-shadow: 0px 8px 25px rgba(0,0,0,0.1); */

    display: flex;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    width: 100%;
    overflow: hidden;
}

/* LEFT PANEL — FORM */
.left-panel {
    width: 50%;
    padding: 50px;
}

/* RIGHT PANEL — IMAGE OR COLOR */
.right-panel {
    width: 50%;
    background-color: #8BD3F4;   /* Light blue */
    display: flex;
    justify-content: center;
    align-items: center;
}