/* Info Pages Stylesheet - For about, login, register, contact, privacy, etc. */

body {
    background-color: #faf8f3;
    color: #3a3a3a;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Page Container */
.info-page-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Railing Header */
.railing-header {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.railing-header a {
    display: flex;
    line-height: 0;
    text-decoration: none;
}

.railing-header img {
    height: 60px;
    width: auto;
    display: block;
}

.railing-header img:last-child {
    transform: scaleX(-1);
}

/* Content Styling */
.info-content p,
.about-content p {
    margin-bottom: 20px;
    text-align: justify;
}

/* Links */
.info-link {
    text-align: center;
    margin-top: 40px;
}

.info-link a {
    color: #3a3a3a;
    text-decoration: none;
    border-bottom: 1px solid #3a3a3a;
    padding-bottom: 2px;
}

.info-link a:hover {
    color: #666;
    border-bottom-color: #666;
}

/* Forms (for login, register pages) */
.info-form {
    max-width: 400px;
    margin: 0 auto;
}

.info-form .form-group {
    margin-bottom: 20px;
}

.info-form input[type="text"],
.info-form input[type="email"],
.info-form input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    background-color: #fff;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 16px;
    box-sizing: border-box;
}

.info-form button,
.info-form input[type="submit"] {
    width: 100%;
    padding: 12px;
    background-color: #3a3a3a;
    color: #faf8f3;
    border: none;
    border-radius: 4px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 16px;
    cursor: pointer;
}

.info-form button:hover,
.info-form input[type="submit"]:hover {
    background-color: #555;
}

.info-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: normal;
}

/* Error and Success Messages */
.error {
    background-color: #ffebee;
    border: 1px solid #f44336;
    color: #c62828;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.error ul {
    margin: 0;
    padding-left: 20px;
}

.success {
    background-color: #e8f5e9;
    border: 1px solid #4caf50;
    color: #2e7d32;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* Headings */
h1, h2, h3 {
    color: #3a3a3a;
    font-weight: normal;
}

h1 {
    text-align: center;
    margin-bottom: 30px;
}
