/*sign up*/
@import url('https://fonts.googleapis.com/css2?family=Gelasio:ital,wght@0,400..700;1,400..700&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #ffffff;
    height: 100vh;
}

.signup-container {
    display: flex;
    height: 100%;
    overflow: hidden;
}

/* Left Section */
.form-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    
}

.form-wrapper {
    width: 100%;
    max-width: 400px;
}

h2 {
    font-size: 24px;
    margin-bottom: 40px;
    color: #333;
    text-align: center;
    font-family: 'Gelasio';
}

.google-btn {
    width: 100%;
    padding: 12px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 500;
}

.divider {
    text-align: center;
    margin: 20px 0;
    color: #888;
    position: relative;
}

.input-group {
    margin-bottom: 15px;
    position: relative;
}

.input-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
    color: #666;
}

.input-group input {
    width: 100%;
    padding: 12px;
    /* border: 1px solid #009cd5; */
    border: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}
/* eye position  */
#togglePassword {
    position: absolute;
    right:15px;
    top:55%;
    cursor: pointer;
    color:#666;
}
.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    margin: 20px 0;
    color: #666;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background-color: #0065b3; /* Orange from sample */
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
}

.submit-btn:hover {
    background-color: #dde3e9; /* Orange from sample */
    color: #0065b3;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);

}

.login-link {
    margin-top: 20px;
    font-size: 14px;
    text-align: center;
}

/* Right Section */
.info-section {
    flex: 1;
    background-color: #009cd5; /* Purple background */
    color: rgb(10, 0, 0);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px;
    position: relative;

}

/* Shape effect from image */
.info-section::before {
    content: "";
    position: absolute;
    left: -50px;
    top: 0;
    height: 100%;
    width: 100px;
    background-color: white;
    border-radius: 0 100% 100% 0;
}

.quote-mark {
    font-size: 80px;
    line-height: 0;
    display: block;
    margin-bottom: 30px;
    opacity: 0.5;
}

.testimonial p {
    font-size: 22px;
    line-height: 2;
    margin-bottom: 20px;
    font-weight: 500;
    font-family: 'Gelasio';

}

.author span {
    font-size: 14px;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 850px) {
    .info-section { display: none; }
}