/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f4f8;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Container */
.container {
    display: flex;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Left Section - Login */
.login-section {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.logo h1 {
    font-size: 24px;
    color: #333333;
}

h2 {
    font-size: 22px;
    color: #333333;
    margin-bottom: 10px;
}

.social-buttons {
    display: flex;
    gap: 10px;
    margin: 15px 0;
}

.btn {
    flex: 1;
    padding: 10px 15px;
    font-size: 14px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.google-btn {
    background-color: #ffffff;
    border: 1px solid #ccc;
    color: #333333;
    text-align:center;
}

.facebook-btn {
    background-color: #4267B2;
    color: #ffffff;
    display:none;
}

.separator {
    text-align: center;
    font-size: 12px;
    margin: 10px 0;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.input-field {
    padding: 10px;
    border: 1px solid #cccccc;
    border-radius: 5px;
    font-size: 14px;
}

.options {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin: 10px 0;
}

.forgot-password {
    color: #007BFF;
    text-decoration: none;
}

.forgot-password:hover {
    text-decoration: underline;
}

.login-btn {
    background-color: #007BFF;
    color: #ffffff;
    font-size: 14px;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    border: none;
}

.create-account {
    font-size: 12px;
    margin-top: 10px;
}

.create-account a {
    color: #007BFF;
    text-decoration: none;
}

.create-account a:hover {
    text-decoration: underline;
}

/* Right Section - Information */
.info-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
    background-image: url(/img/signupPage/readingBookGirl.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    padding: 0px 0px;
}

.info-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}
.info-content{
    color:black;
}

.info-content p {
    font-size: 14px;
}


/* 1. Extra small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
/* Styles for phones */
    .container{
        flex-direction: column;
    }
    .info-content{
        height: 400px;
        display: flex ;
        flex-direction: column;
        justify-content: center;
    }
}

/* 2. Small devices (portrait tablets and large phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
/* Styles for small tablets and large phones */
    .container{
        flex-direction: column;
    }
    .info-content{
        height: 400px;
        display: flex ;
        flex-direction: column;
        justify-content: center;
    }
}

/* 3. Medium devices (landscape tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .container{
        flex-direction: column;
    }
    .info-content{
        height: 400px;
        display: flex ;
        flex-direction: column;
        justify-content: center;
    }
/* Styles for tablets */
}

/* 4. Large devices (laptops/desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
/* Styles for laptops */
}

/* 5. Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
/* Styles for large screens */
}
