* {
    box-sizing: border-box;
}
  
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
}
  
.container {
    display: flex;
    height: 100vh;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}
  
.left-column, .right-column {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}
  
.left-column img {
    max-width: 100%;
    height: 100vh;
    object-fit: cover;
}
  
.right-column {
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Align items at the top */
    flex-direction: column;
}
  
.form-container {
    padding: 40px;
    border-radius: 10px;
    width: 100%;
    max-width: 600px;
}
  
.title {
    color: #333;
}
  
.messageDiv {
    color: red;
    display: none;
    margin-bottom: 15px;
}
  
.form-group {
    margin-bottom: 15px;
    position: relative;
}
  
.form-group input {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
}

.toggle-password1, .toggle-password2 {
    position: absolute;
    top: 35px;
    right: 10px;
    cursor: pointer;
}

.submit-button {
    width: 100%;
    padding: 10px;
    background-color: #ffca28;
    border: none;
    color: #000;
    cursor: pointer;
    border-radius: 5px;
}
  
.submit-button:hover {
    background-color: #ffc107;
}
  
.sign-in-link {
    text-align: center;
}
  
.sign-in-link a {
    color: #000;
    text-decoration: none;
}
  
.sign-in-link a:hover {
    text-decoration: underline;
}
  
/* Responsive styles */
@media (max-width: 767px) {
    .container {
        flex-direction: column;
        align-items: center;
    }

    .left-column, .right-column {
        width: 100%;
    }

    .left-column {
        order: 1;
    }

    .right-column {
        order: 2;
        padding-top: 0;
    }

    .left-column img {
        height: auto;
    }
}


/* General styles for the form */
.form-group {
    margin-bottom: 15px;
    position: relative;
}

/* Styling the password input fields to accommodate the eye icon */
.form-group input {
    width: 100%;
    padding: 10px;
    padding-right: 40px; /* Adjust to ensure the icon does not overlap the text */
    box-sizing: border-box; /* Ensure padding is included in the width */
}

/* Styling the eye icon */
.toggle-password1, .toggle-password2 {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
    width: 24px;
    height: 24px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .toggle-password1, .toggle-password2 {
        width: 20px;
        height: 20px;
    }
}



/*  */

/* General styles for the form */
.form-group {
    margin-bottom: 15px;
    position: relative;
}

/* Styling the password input fields to accommodate the eye icon */
.form-group input {
    width: 100%;
    padding: 10px;
    padding-right: 40px; /* Adjust to ensure the icon does not overlap the text */
    box-sizing: border-box; /* Ensure padding is included in the width */
}

/* Styling the eye icon */
.toggle-password1, .toggle-password2 {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
    width: 24px;
    height: 24px;
}

/* Styling for "Create Your Account" text */
.title {
    color: #333;
    font-size: 40px; /* Increase font size */
    margin-bottom: 10px; /* Add some space below the title */
}

/* Styling for "Enter your details" text */
.subtitle {
    color: #666;
    font-size: 18px; /* Increase font size */
    margin-bottom: 20px; /* Add some space below the subtitle */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .toggle-password1, .toggle-password2 {
        width: 20px;
        height: 20px;
    }

    .title {
        font-size: 20px; /* Adjust font size for smaller screens */
    }

    .subtitle {
        font-size: 16px; /* Adjust font size for smaller screens */
    }
}



