:root {
    --primary-color: #003A9B;
    --secondary-color: #2D2D2D;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --dark-gray: #333333;
    --border-color: #E0E0E0;
    --transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

body {
    background-color: var(--light-gray);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.signup-container {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 420px;
    padding: 32px;
}

.signup-header {
    margin-bottom: 24px;
    text-align: center;
}

.signup-header h1 {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 14px;
    transition: var(--transition);
    background-color: var(--light-gray);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 58, 155, 0.1);
}

.password-container {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--dark-gray);
    font-size: 18px;
}

.btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #002a7a;
}

.terms {
    margin: 20px 0;
    font-size: 12px;
    color: var(--dark-gray);
    text-align: center;
    line-height: 1.5;
}

.login-link {
    text-align: center;
    margin-top: 16px;
    font-size: 14px;
}

.login-link a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.login-link a:hover {
    text-decoration: underline;
}

.g-recaptcha {
    /* position: absolute; */
    /* bottom: 10px; */
    /* right: 10px */
}

@media (max-width: 480px) {
    .g-recaptcha{
        max-width: 100px;
    }
}

/* google button */
.google-btn {
  width: -webkit-fill-available;
  height: 42px;
  background-color: #ffffff;
  border: 1px solid #dadce0;
  border-radius: 4px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.2s, box-shadow 0.2s;
  padding: 0;
}

.google-btn:hover {
  background-color: #f8f9fa;
  box-shadow: 0 1px 2px 0 rgba(60,64,67,0.3), 0 1px 3px 1px rgba(60,64,67,0.15);
}

.google-icon-wrapper {
  margin-left: 1px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.google-icon {
  width: 25px;
  height: 25px;
}

.breaker{
    margin-top: 10px;
    text-align: center;
}

.btn-text {
  flex-grow: 1;
  color: #3c4043;
  font-size: 14px;
  letter-spacing: 0.2px;
  font-family: 'Roboto', sans-serif;
  text-align: center;
  margin: 0;
}


.S9gUrf-YoZ4jf{
    width: -webkit-fill-available
}

.nsm7Bb-HzV7m-LgbsSe-Bz112c{
    text-align: center;
}

/* toast bar  */

#toast-container {
    position: fixed;
    top: 20px; /* Adjust as needed */
    right: 20px; /* Adjust as needed */
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000; /* Ensure it's above other content */
}

.toast {
    background-color: #333;
    color: #fff;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    min-width: 250px;
    opacity: 0;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    transform: translateX(100%); /* Start off-screen to the right */
}

.toast.show {
    opacity: 1;
    transform: translateX(0); /* Slide in */
}

.toast.hide {
    opacity: 0;
    transform: translateX(100%); /* Slide out */
}
