/* General styles */
body {
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: #fff;
}

.container {
    position: relative;
    width: 900px; /* Increased width for larger modal */
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    gap: 10px;
}

/* Form container styles */
.forms-container {
    width: 50%;
    background-color: #ffffff;
    padding: 20px;
}

.signin-signup {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
}

.sign-in-form {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sign-in-form input {
    margin: 5px 0;
    width: 90%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 25px;
}

/* Title styles */
.title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

/* Input field styles */
.input-field {
    position: relative;
    margin: 15px 0;
    width: 100%;
}

.input-field input {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 25px;
    background: #f1f1f1;
    outline: none;
    transition: all 0.3s ease;
}

.input-field input:focus {
    border-color: #6a11cb;
    background: #e6e6e6;
}

/* Button styles */
.btn {
    border: none;
    padding: 10px;
    border-radius: 25px;
    background: #6a11cb;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn.solid {
    background: #2575fc;
}

.btn:hover {
    background: #4a00e0;
}

.logo{
    width: 100%;
}

/* Panel styles */
.panels-container {
    width: 50%;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
    padding: 20px;
}

.central-panel .content {
    text-align: center;
    padding: 20px;
}

.central-panel h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.central-panel p {
    font-size: 14px;
    line-height: 1.6;
}

.sign-in-form input[type="submit"] {
    width: 95%;
}

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

    .forms-container,
    .panels-container {
        width: 100%;
        padding: 0px;
    }
}
