/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: auto;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f8f9fc;
   

}

/* Container */
.container {
    display: flex;
    width:100%;
    background: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 26px;
    overflow: hidden;
    margin:auto;
}

/* Illustration Section */
.illustration {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: #eef3fd;
}

.illustration img {
    max-width: 90%;
    height: auto;
}

/* Logo Styling */
.logo {
    text-align: center;
    margin-bottom: 1px;
    margin-top: 25px;
}

.logo img {
    max-width: 190px; /* Adjust size as needed */
    height: auto;
}
/* Login Section */
.login-container {
    flex: 1;
    padding: 5px;
    display: flex;
    flex-direction: column;
    justify-content: right;

}

h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

p {
    font-size: 14px;
    color: #555;
}

/* Input Fields */
.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: bold;
}

.input-group input {
    width: 80%;
    padding: 10px;
    padding-right: 30px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 90px;
    outline: none;
}

.input-group i {
    position: absolute;
    right: 80px;
    top: 55%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #888;
}

.input-group i:hover {
    color: #007bff;
}

/* Options */
.options {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 20px;
}

.options a {
    text-decoration: none;
    color: #007bff;
}

/* Buttons */

.login-btn {
    background-color: #007bff;
    color: white;
    margin-bottom: 10px;
}

.create-btn {
    background-color: #eef3fd;
    color: #007bff;
}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.social-icons i {
    font-size: 20px;
    color: #007bff;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        width: 90%;
    }
.logo {
    text-align: center;
    margin-bottom: 1px;
    margin-top: 50px;
    margin-right: 25px;
    margin-left: 25px;

}
    .illustration {
        display: none;
    }

    .login-container {
        padding: 5px;
    }
    .input-group i {
    position: absolute;
    right: 100px;
    top: 55%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #888;
}
.input-group input {
    width: 80%;
    padding: 10px;
    padding-right: 30px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 90px;
    outline: none;
}
}
@media (max-width: 375px) {
    .input-group i {
    position: absolute;
    right: 30px;
    top: 55%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #888;
}
}
@media (max-width: 425px) {
    .input-group i {
    position: absolute;
    right: 40px;
    top: 55%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #888;
}
}
@media (max-width: 1024px) {
    .input-group i {
    position: absolute;
    right: 40px;
    top: 55%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #888;
}
}

.text{
    margin-top: 1px;
}
    .text h3 {
        color: #AAA8BB;
        width: 100%;
        text-align: center;
        font-size: 14px;
       }
       .text h4 {
        margin-top: 10px;
        color: #AAA8BB;
        width: 100%;
        text-align: center;
        font-size: 12px;
       }
     .text h3 a{
         color: #AAA8BB;
         text-decoration: none;
       }
     .text h3 a:hover{
         text-decoration: underline;
       }
       .follow{
        margin-top: 12px;
        
    }
        .follow h3 {
            color: #AAA8BB;
            width: 100%;
            text-align: center;
            font-size: 14px;
           }
           .follow h4 {
            margin-top: 10px;
            color: #AAA8BB;
            width: 100%;
            text-align: center;
            font-size: 12px;
           }
         .follow h3 a{
             color: #AAA8BB;
             text-decoration: none;
           }
         .follow h3 a:hover{
             text-decoration: underline;
           }
   