/* 🔹 Information Section */
.info-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    width: 85%;
    margin: auto;
    gap: 30px;
    text-align: center;
}

.info-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 32%;
}

.info-box h2 {
    font-size: 22px;
    color: #1D3557;
    margin-bottom: 15px;
}


/* 📋 Sign-Up Page Styling */
.signup {
    text-align: center;
    padding: 70px 0;
    background: white;
}

.signup h1 {
    font-size: 30px;
    font-weight: 600;
    color: #1D3557;
    margin-bottom: 10px;
}

.signup p {
    font-size: 16px;
    color: #555;
    max-width: 600px;
    margin: auto;
    margin-bottom: 30px;
}

/* 📩 Sign-Up Form */
#signup-form {
    max-width: 480px;
    margin: auto;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

#signup-form:hover {
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}


/* 🔹 Login Redirect */
.signup-link {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
}

.signup-link a {
    color: #1D3557;
    font-weight: bold;
    text-decoration: none;
}

.signup-link a:hover {
    text-decoration: underline;
}


/* 📌 Login Section */
.login-section {
    text-align: center;
    padding: 70px 0;
    background: white;
}

.login-section h1 {
    font-size: 30px;
    font-weight: 600;
    color: #1D3557;
    margin-bottom: 10px;
}

.login-section p {
    font-size: 16px;
    color: #555;
    max-width: 600px;
    margin: auto;
    margin-bottom: 30px;
}

/* 📩 Login Form */
#login-form {
    max-width: 400px;  /* Compact width */
    margin: auto;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

#login-form:hover {
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}


/* 🔹 Signup Link */
.auth-link {
    font-size: 14px;
    margin-top: 15px;
}

.auth-link a {
    color: #1D3557;
    font-weight: bold;
    text-decoration: none;
}

.auth-link a:hover {
    text-decoration: underline;
    color: #003366;
}
