
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFF;
  padding: 0 20px;
}
.container {
  display: flex;
  width: 100%;
  max-width: 900px;
  box-shadow: 0px 12px 28px 0px rgba(140, 149, 159, 0.3);
  background: white;
  border-radius: 30px;
  padding: 20px;
  border: 1.3px solid #0057ED;
}


.left-column, .right-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.left-column {
  justify-content: center;
  padding: 15px;
  padding-top: 0px;
  background: #0156EE;
  border-radius: 20px;
}

.logo-container {
  align-self: flex-start; 
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* Ensures the logo does not exceed the container */
  margin-left: 20px;
  filter: invert(100%) brightness(100) contrast(100%);
}
.logo {
  max-width: 100%;
  max-height: 100%;
}
.headline {
  align-self: flex-start; 
  color: white;
  font-size: 24px;
  text-align: left;
  margin-top: 20px;
  margin-left: 20px;
  width: 70%;
  font-size: 3.1em;
}
.right-column {
  padding: 30px;
}

.form-heading {
  font-size: 1em;
  color: #0057ed;
  margin-bottom: 10px;
}

.form-instructions {
  font-size: 0.8em;
  color: #1A1A1A;
  margin-bottom: 15px;
}

.verification-form {
  width: 100%;
  max-width: 400px;
  padding: 20px;
  background: transparent;
  border-radius: 4px;
}
.input-container {
  position: relative;
  margin-bottom: 20px;
  background: #fff;
}
.input-field {
  width: 100%;
  height: 55px;
  padding-left: 15px;
  border: 1px solid #DEE1E5;
  outline: none;
  border-radius: 10px;
}
.icon {
  position:absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  color: #bfbfbf;
  font-size: 20px;
}
.error-icon, .passed-icon {
  right: 10px;
  left: auto;
  display: none;
}
.submit-button {
  width: 100%;
  padding: 15px;
  padding-left: 18px;
  padding-right: 18px;
  background: #0057ED; 
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1em;
  text-align: center;
  margin-top: 15px;
  transition: transform 0.1s ease-in-out; /* Smooth transition for transform */
}
.submit-button:hover {
  transform: scale(1.02); 
}

.resend-code-button {
  color: #0057ED;
  font-size: 0.8em;
  background: #fff;
  margin-top: 20px;
  border: none;
}

.status-text {
  margin-top: 25px;
  font-size: 0.85em;
  color: #de0611;
  text-align: left;
}

.input-container.checkbox-container label {
  font-size: 12px; /* Adjust the font size as needed */
}



/* START EMAIL VERIFICATION SUCCESS STYLING */
#success-message {
  text-align: center;
  color: #31A350;
  margin-top: 20px;
}

.success-animation {
  margin: 20px auto;
  width: 50px;
  height: 50px;
  position: relative;
}

.success-animation .smile-face {
  width: 50px;
  height: 50px;
  background-color: #31A350;
  border-radius: 50%;
  position: relative;
  animation: scaleUp 0.3s ease-out;
}

.success-animation .smile-face .eyes {
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: white;
  border-radius: 50%;
  top: 15px;
}

.success-animation .smile-face .eyes.left {
  left: 12px;
}

.success-animation .smile-face .eyes.right {
  right: 12px;
  width: 12px;
  height: 3px;
  border-radius: 3px;
  background-color: white;
}

.success-animation .smile-face .mouth {
  position: absolute;
  bottom: 15px;
  left: 50%;
  width: 20px;
  height: 10px;
  border: 2px solid white;
  border-radius: 0 0 50% 50%;
  transform: translateX(-50%);
}

@keyframes scaleUp {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}



/* END EMAIL VERIFICATION SUCCESS STYLING */