/* General Styles */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #f5b785, #fdc9e9);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    display: flex;
    max-width: 1100px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 90%;
}

/* Info Section */
.info-section {
    flex: 1;
    padding: 30px;
    background: #fde9d8;
    text-align: center;
/*    background-image:url('/img/signupPage/bookAndTPot.jpg');*/
}

.info-section h1 {
    font-size: 24px;
    color: #5d3c27;
    margin-bottom: 20px;
}
.illustration{
    border-radius: 10px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.info-section .illustration {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
}

.info-section p {
    font-size: 14px;
    color: #5d3c27;
}

.info-section a {
    color: #d67a5b;
    text-decoration: none;
}

.info-section a:hover {
    text-decoration: underline;
}

/* Form Section */
.form-section {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-header h2 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.form-header p {
    font-size: 14px;
    color: #666;
}

.form-header a {
    color: #007bff;
    text-decoration: none;
}

.form-header a:hover {
    text-decoration: underline;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-btn {
    padding: 12px;
    font-size: 14px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    color: #fff;
}

.google {
    background: #4285f4;
}

.divider {
    text-align: center;
    font-size: 14px;
    color: #aaa;
    margin: 10px 0;
    position: relative;
}

.divider::before,
.divider::after {
    content: "";
    display: block;
    width: 40%;
    height: 1px;
    background: #ccc;
    position: absolute;
    top: 50%;
}

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
}

input {
    padding: 12px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
}

input:focus {
    outline: none;
    border-color: #007bff;
}

.form-group {
    display: flex;
    gap: 10px;
}

.terms {
    font-size: 12px;
    color: #666;
}

.terms a {
    color: #007bff;
    text-decoration: none;
}

.terms a:hover {
    text-decoration: underline;
}

.btn.signup-btn {
    padding: 12px;
    background: #d67a5b;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s ease;
}

.btn.signup-btn:hover {
    background: #b85c48;
}

.footer-note {
    font-size: 12px;
    color: #999;
    margin-top: 20px;
    text-align: center;
}

.footer-note a {
    color: #007bff;
    text-decoration: none;
}

.footer-note a:hover {
    text-decoration: underline;
}
