@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

body {
    background-color: #f0f4ff;
    font-family: 'Poppins', sans-serif;
    height: 100vh;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Main White Card */
.main-container {
    background: #fff;
    width: 1000px;
    height: 600px;
    border-radius: 50px;
    display: flex;
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
    overflow: hidden;
}

/* Left Blue Side - The "Bubble" Shape */
.blue-side {
    background: #7a9efc;
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    padding: 40px;
    text-align: center;
    /* This creates the specific curve from your image */
    border-radius: 0 180px 180px 0; 
}

.blue-side h1 { font-weight: 700; font-size: 2.5rem; margin-bottom: 10px; }
.blue-side p { opacity: 0.9; margin-bottom: 30px; }

/* Register Button (Ghost Style) */
.btn-register {
    border: 2px solid white;
    color: white;
    background: transparent;
    border-radius: 30px;
    padding: 10px 40px;
    font-weight: 600;
    transition: 0.3s;
    text-decoration: none;
}
.btn-register:hover { background: white; color: #7a9efc; }

/* Right Form Side */
.form-side {
    width: 55%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-side h2 { font-weight: 700; font-size: 2.2rem; margin-bottom: 30px; color: #333; }

/* Custom Inputs */
.input-group-custom {
    position: relative;
    margin-bottom: 20px;
}

.input-group-custom i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
}

.input-group-custom input {
    width: 100%;
    padding: 15px 15px 15px 45px;
    background: #f0f3f8;
    border: none;
    border-radius: 12px;
    outline: none;
}

/* Login Button */
.btn-login {
    background: #7a9efc;
    color: white;
    border: none;
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 10px;
    box-shadow: 0 10px 20px rgba(122, 158, 252, 0.3);
    cursor: pointer;
}

.forgot-link {
    text-align: right;
    display: block;
    font-size: 0.85rem;
    color: #8fa3c0;
    text-decoration: none;
    margin-bottom: 20px;
}

/* Social Icons */
.social-text {
    text-align: center;
    color: #8fa3c0;
    font-size: 0.8rem;
    margin-top: 30px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7a9efc;
    text-decoration: none;
    box-shadow: 0 5px 10px rgba(0,0,0,0.05);
}
/* Add this to your style.css */
.custom-select {
    width: 100%;
    padding: 15px 15px 15px 45px;
    background: #f0f3f8;
    border: none;
    border-radius: 12px;
    outline: none;
    appearance: none; /* Removes default arrow */
    color: #666;
}

/* Ensure the blue bubble side has a smooth transition */
.blue-side {
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

#registerSection h2 {
    margin-bottom: 15px;
}