/* css/styles.css */

/* General Body Styles */

.header.page1 {
    background-color: #426853;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
body {
    font-family: 'Open Sans', sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0; /* Added for consistency */
    padding: 0; /* Added for consistency */
}

/* Button Styles */
.button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    color: white;
    background-color:#49706B;
    text-align: center;
    border: none;
    border-radius: 5px;
    text-decoration: none; /* Removes the underline */
    cursor: pointer;
    font-weight: 100;
}

.button:hover {
    background-color: #4cae4c;
}

/* Container Styles */
.container {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 800px; /* Ensure consistent layout */
    display: flex;
    gap: 30px; /* Added gap to match the HTML */
}
.form-container {
    background-color: #f5f5f5;
    border-radius:15px;
    padding: 50px;
    margin-left: 5%;
}
/* Image Styles */
.container img {
    max-width: 100%;
    height: auto;
    max-height: 500px; /* Ensure image scales well */
    filter: brightness(60%);
}

/* Headings */
h2 {
    margin-bottom: 5px;
    color: #333;
    font-family: 'Open Sans', sans-serif;
    font-size: 20px; /* Match the HTML */
}

p {
    color: #666;
    margin-bottom: 25px;
    font-size: 11px;
}

p1 {
    color: red;
    margin-top: 18px;
    font-size: 11px;
}
p2 {
    color: #979797;
    margin-top: 10px;
    font-size:10px;
}

/* Form Input and Button Styles */
input[type="email"],
input[type="password"],
button {
    width: 100%;
    padding: 12px 40px;
    margin-bottom: -5px;
    border-radius: 10px;
    border: 1px solid #49706B;
    background-color:#d6e3e1;
    box-sizing: border-box; /* Ensure padding/border are included */
}

button {
    width: 100%;
    font-family: 'Open Sans', sans-serif;
    padding: 10px;
    background-color:#49706B;
    color: white;
    border: none;
    margin-top: 30px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    font-weight:lighter;
}

button:hover {
    background-color:#49706B;
}

/* Input Container for Icons */
.form-container .input-container {
    border-color:#49706B;
    position: relative;
}

.form-container .input-container.icon-page2 {
    border-color: #704964;
    position: relative;
}

.form-container .input-container i {
    position: relative;
}

.form-container .input-container .fas.fa-user {
    left: 10px;
    top: 30px;
    color: #49706B
}

.form-container .input-container .fas.fa-envelope {
    left: 10px;
    top: 30px;
    cursor: pointer;
    color: #49706B
}

.form-container .input-container .fas.fa-lock {
    left: 10px;
    top: 30px;
    cursor: pointer;
    color: #49706B
}

.form-container .input-container .fas.fa-eye-slash {
    left:82%;
    top: 30px;
    cursor: pointer;
    color:#666
}

.form-container .input-container .fas.fa-eye-slash.icon-page1 {
    cursor: pointer;
    color:#666;
}

/* Checkbox Container Styles */
.checkbox-container {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.checkbox-container input[type="checkbox"] {
    /* Hide the default checkbox */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 0;
    height: 0;
    position: relative;
    overflow: hidden;
}

.checkbox-container label::before {
    content: '';
    display: inline-block;
    width: 13px;
    height: 13px;
    background-color:#49706B;/* Green background */
    border-radius: 3px; /* Optional: Adds rounded corners */
    margin-right: 10px;
    margin-bottom: 5px;
    vertical-align: middle;
    cursor: pointer;
}

.checkbox-container input[type="checkbox"]:checked + label::before {
    content: '\2714'; /* Unicode for checkmark */
    color: white;
    font-size: 13px;
    text-align: center;
    line-height: 13px;
    background-color:#49706B/* Ensure the background stays green when checked */
}

.checkbox-container label {
    font-size: 13px;
    color: #333;
    cursor: pointer;
}
