/* General Utilities */
.display-flex, .display-flex-center {
  display: flex;
  -webkit-display: flex;
}

.display-flex {
  justify-content: space-between;
  align-items: center;
}

.display-flex-center {
  justify-content: center;
  align-items: center;
}

/* Font: Montserrat */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/montserrat/Montserrat-Light.ttf");
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/montserrat/Montserrat-Regular.ttf");
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/montserrat/Montserrat-Medium.ttf");
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/montserrat/Montserrat-Bold.ttf");
}
@font-face {
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 700;
  src: url("../fonts/montserrat/Montserrat-BoldItalic.ttf");
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  background-image: url("../images/signup-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  font-size: 14px;
  color: #222;
  overflow-x: hidden;
}

/* Container */
.container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Sign-up Section */
.signup-content {
  background: #fff;
  border-radius: 10px;
  padding: 50px 60px;
}

/* Two-Column Layout */
.two-column {
  display: flex;
  flex-direction: row;
  gap: 50px;
  padding: 50px 60px;
}

.signup-left,
.signup-right {
  flex: 1;
}

.signup-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 30px;
  border-right: 2px solid #3c3c3c;
}

.signup-right {
  padding-left: 30px;
}

/* Greeting Text */
.greeting-title {
  font-size: 28px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  text-align: center;
}

.greeting-text {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  text-align: center;
}

/* Form */
h2.form-title {
  font-size: 24px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-input, .form-submit {
  width: 100%;
  max-width: 100%;
  padding: 17px 20px;
  border-radius: 5px;
  border: 1px solid #ebebeb;
  font-size: 14px;
  font-weight: 500;
}

.form-input::placeholder {
  color: #999;
  font-weight: 500;
}

.form-input:focus {
  border: 1px solid transparent;
  border-image: linear-gradient(to right, #9face6, #74ebd5) 1;
}

.form-submit {
  background: linear-gradient(to left, #74ebd5, #9face6);
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  border: none;
}

/* Checkbox and Terms */
input[type=checkbox] {
  display: none;
}

input[type=checkbox] + label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #555;
}

input[type=checkbox] + label > span {
  display: inline-block;
  width: 13px;
  height: 13px;
  border: 1px solid #ebebeb;
  border-radius: 2px;
  margin-right: 10px;
  vertical-align: middle;
  background: white;
}

input[type=checkbox]:checked + label > span:before {
  content: '\f26b';
  font-family: 'Material-Design-Iconic-Font';
  font-weight: bold;
  font-size: 11px;
  color: #222;
  display: block;
  text-align: center;
}

/* Login Text */
.loginhere {
  text-align: center;
  font-weight: 500;
  color: #555;
  margin-top: 40px;
}

.loginhere-link {
  font-weight: 700;
  color: #222;
  text-decoration: none;
}

/* Responsive */
@media screen and (max-width: 768px) {
    body {
    padding: 40px 0;
  }
  .two-column {
    flex-direction: column;
    padding: 20px 15px;
  }

  .signup-content {
    padding: 30px 20px;
    margin-bottom: 0;
  }

  .signup-left {
    padding-right: 0;
    border-right: none;
    margin-bottom: 30px;
  }

  .signup-right {
    padding-left: 0;
  }

  .form-input, .form-submit {
    font-size: 14px;
    padding: 15px;
  }
}

@media screen and (max-width: 480px) {
  .signup-content {
    padding: 15px 15px;
  }

  .form-input, .form-submit {
    padding: 14px;
    font-size: 13px;
  }

  .greeting-title {
    font-size: 22px;
  }

  .greeting-text {
    font-size: 14px;
  }
}
body {
  padding: 80px 0;
}

.form-submit {
  background: linear-gradient(to left, #74ebd5, #9face6);
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  border: none;
  cursor: pointer; /* <--- Add this */
  transition: background 0.3s ease;
}

.form-submit:hover {
  background: linear-gradient(to left, #5ad1c4, #7d9ee3); /* <--- Slightly different on hover */
}

/* Logo styles */
.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.logo-image {
    max-width: 300px; /* Larger image */
    max-height: 150px; /* Constrain height if needed */
    width: auto;
    height: auto;
}

/* Adjust the greeting title margin if needed */
.greeting-title {
    margin-top: 0; /* Remove default margin if it creates too much space */
}