@charset "utf-8";
#error_emailexists, #pass-modal, #create_account_error {display:none}
html {
  height: 100%;
}
body {
    min-height: 100%;
    position: relative;
    isolation: isolate;
    margin: 0;
}

.sitewrap {
    background-color: #f3f4f6 !important;
}

#footer {
  padding-top:0 !important
}

#login_wrapper {
    font-family: 'Roboto Slab', sans-serif;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    margin-top:3rem;
}

.login_errmsg {
display:none;
background-color: #fdf2f2;
font-family: 'Roboto Slab', sans-serif;
color:rgb(116 15 15);
margin-bottom: 12px;
padding: 8px 0;
border-radius: 4px;
text-align: center;
font-size: 14px;
font-weight: 200;
}

.login_errmsg span:before {
background-image: url("../images/cross2.png");
    background-size: 14px 14px;
  background-repeat: no-repeat;
    display: inline-block;
  padding-right: 8px;
  margin-bottom: -2px;
    width: 14px; 
    height: 14px;
    content:"";
}

/* --- Main Form Container --- */
        .form-container {
            width: 100%;
            max-width: 28rem; /* Equivalent to max-w-md */
            background-color: #ffffff;
            border-radius: 1rem; /* Equivalent to rounded-2xl */
            box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); /* Equivalent to shadow-lg */
            padding: 1.5rem;
            margin:0 1rem;
            margin-bottom:30px
        }

        /* --- Header --- */
        .form-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .form-header h1 {
            font-size: 1.5rem;
            font-weight: 300;
            color: #3c4045;
            margin:0
        }

        .form-header p {
            color: #878787;
            margin-top: 0.5rem;
            font-weight: 300;
        }

        /* --- Tab Controls --- */
        .tab-controls {
            background-color: #f3f4f6;
            padding: 0.375rem;
            border-radius: 0.75rem;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 2rem;
        }

        .tab-btn {
            width: 50%;
            padding: 0.625rem 0;
            font-size: 0.875rem;
            font-weight: 200;
            font-family: 'Roboto Slab',sans-serif;
            border-radius: 0.5rem;
            border: none;
            background-color: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
            color: #6b7280;
        }

        .tab-btn.tab-active {
            background-color: #ffffff;
            color: #111827;
            font-weight: 400;
            box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
        }

        /* --- Form Content --- */
        .form-content {
            display: none; /* Hidden by default, controlled by JS */
        }

        .form-content.active {
            display: block;
        }
        
        /* Spacing between form elements */
        .form-content form > div > * + * {
            margin-top: 1.25rem;
        }

        /* --- Form Inputs & Labels --- */
        label {
            display: block;
            margin-bottom: 0.25rem;
            font-size: 0.875rem;
            font-weight:400;
            color: #374151;
        }

        label.termschk {
            font-weight:200 !important
        }

        input[type="email"],
        input[type="password"],
        input[type="text"] {
            width: 100%;
            padding: 0.625rem 1rem;
            border: 1px solid #b2b4b8;
            border-radius: 0.5rem;
            transition: all 0.3s ease;
            box-sizing: border-box;
            font-family: 'Roboto Slab',sans-serif;
            font-weight:200
        }

        input[type="email"]:focus,
        input[type="password"]:focus,
        input[type="text"]:focus {
            outline: none;
            border-color: #3b82f6;
            box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.4);
        }

        .password-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.25rem;
        }

        .password-header a {
            font-size: 0.875rem;
            font-weight: 500;
            color: #637ea7;
            text-decoration: none;
        }

        .password-header a:hover {
            text-decoration: underline;
        }
        
        .name-fields {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }


        /* --- Submit Button --- */
        .submit-btn {
            width: 100%;
            background-color: #484547;
            color: white;
            font-weight: 300;
            font-size: 1rem;
            font-family: 'Roboto Slab',sans-serif;
            padding: 0.75rem 0;
            border-radius: 0.5rem;
            border: none;
            cursor: pointer;
            transition: background-color 0.3s ease;
            box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
            display:flex;
            align-items: center;
            justify-content: center;
        }
        .submit-btn img{
            width: 18px;
            margin-right: 5px;
            opacity: 0.6;
        }

        .submit-btn:hover {
            background-color: #3e3b3d;
        }

        /* --- Divider ("Or continue with") --- */
        .divider {
            margin-top: 1.5rem;
            position: relative;
        }
        .divider-line {
            position: absolute;
            width: 100%;
            top: 50%;
            left: 0;
            border-top: 1px solid #d1d5db;
        }
        .divider-text {
            position: relative;
            display: flex;
            justify-content: center;
            font-size: 0.875rem;
        }
        .divider-text span {
            padding: 0 0.5rem;
            background-color: #ffffff;
            color: #6b7280;
            font-weight:300
        }

        /* --- Social Login Buttons --- */
        .social-logins {
            margin-top: 1.5rem;
            display: grid;
            grid-template-columns: 1fr;
            gap: 0.75rem;
        }

        .social-btn {
               /* width: 100%; */
    display: inline-flex;
    justify-content: center;
    align-items: center;
    /* padding: 0.625rem 1rem; */
    /* border: 1px solid #d1d5db; */
    /* border-radius: 0.5rem; */
    /* box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05); */
    background-color: #ffffff;
    /* font-size: 0.875rem; */
    /* font-weight: 500; */
    color: #374151;
    cursor: pointer;
        }
        .social-btn:hover {
            background-color: #f9fafb;
        }
        .social-btn svg {
            width: 1.25rem;
            height: 1.25rem;
            margin-right: 0.5rem;
        }

        /* --- Responsive Adjustments --- */
        @media (min-width: 640px) {
            .form-container {
                padding: 2rem;
            }
            .form-header h1 {
                font-size: 1.875rem;
            }
            /* UPDATED: Three columns for social logins on larger screens */
            .social-logins {
                grid-template-columns: 1fr 1fr 1fr;
            }
            .name-fields {
                flex-direction: row;
                gap: 1rem;
            }
            .name-fields > div {
                width: 50%;
            }
        }

        label.error, #error_emailexists {
    background-color: #fdf2f2;
    color: rgb(116 15 15);
    padding: 8px 6px;
    font-family: 'Roboto Slab';
    font-weight: 200;
    margin-top: 10px;
    border-radius:5px;
    text-align: left;
    font-size: 13px !important;
    position:relative
}

.terms-error {
  margin-top: 10px !important;
}

        #create-account-form .terms{
font-size:12px;
color:#000;
font-family: 'Roboto Slab',sans-serif;
font-weight: 100;
display: flex;
align-items: baseline;
}
#create-account-form .terms a{
color:#000;
text-decoration: none; 
border-bottom: 1px dashed #a7a7a7;
padding-bottom:2px
}
#create-account-form .terms a:hover{
border-bottom: 1px dashed #000
}

#create-account-form .terms label{
font-size: 12px;
}

#create-account-form .terms input{
width:20px;
margin-bottom: 0;
}

#pass-modal {
width:95%;
max-width: 500px;
padding:20px;
background-color:#f7f7f7;
text-align:center;
font-size:14px;
box-sizing: border-box;
border-radius:18px;
font-family: 'Roboto Slab',sans-serif;
font-weight: 200
}


#pass-modal h6 {
font-size:21px;
font-weight: normal;
margin:0
}

#pass-modal input {
width:100%;
padding:5px;
font-size:15px;
box-sizing: border-box;
font-family: 'Roboto Slab',sans-serif;
font-weight: 100;
border: 1px solid #212121
}

#pass-modal button{ 
    background-color: #594153;
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    margin-top: 10px;
    font-size: 15px;
    font-family: 'Roboto Slab',sans-serif;
    font-weight: 300;
    border: none;
    cursor: pointer;
}

#pass-modal #passr_error {
display:none;
color:#421919;
font-size:12px;
padding:5px;
margin-top: 5px
}

#pass-modal a{
color:#000;
margin-top: 20px
}


.signup_success {
text-align:left;
font-family: 'Roboto Slab',sans-serif;
}
.signup_success h5 {
font-size:18px;
text-align: center;
margin:0;
font-weight: 300;
padding:25px 0 5px 0;
}

.signup_success p {
margin: 0 10px;
margin-bottom:10px;
font-size:14px;
font-weight:300
}

.signup_success hr{
margin-bottom:20px;
  border: 0;
    height: 1px;
    background: #333;
    background: -webkit-gradient(linear, 0 0, 100% 0, from(#E0E0E0), to(#E0E0E0), color-stop(50%, #848484));
    opacity:0.7;
}

.signup_success a {
    display: block;
    text-align: center;
    margin: 0 auto;
    background-color: #6c6a6f;
    width: 200px;
    font-size: 16px;
    padding: 10px;
    margin-top: 20px;
    color: #ffffff;
    font-weight: 300;
    text-decoration: none;
    border-radius: 12px;
}

.checkmark__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #64A383;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #fff;
  stroke-miterlimit: 10;
  margin: 0 auto;
  box-shadow: inset 0px 0px 0px #2B8F55;
  animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes scale {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}
@keyframes fill {
  100% {
    box-shadow: inset 0px 0px 0px 30px #64A383;;
  }
}

#create_account_error {
    text-align: center !important;
    color: red;
    font-weight: 300;
}

.captcha-box {
    background-color: #f8f8f8;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
}
.captcha-box label {
    display: block;
    margin-bottom: 8px;
}
.captcha-box p {
    font-size: 14px;
    color: #555;
    margin-top: 0;
    font-weight:200;
    margin-bottom: 12px;
}
.captcha-container {
    display: flex;
    align-items: center;
    gap: 12px;
}
#captchaImage {
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer; /* Shows a hand icon on hover */
}
#reloadCaptcha {
    padding: 8px 12px;
    cursor: pointer;
    background-color: #eee;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}


.captcha-reload-btn {
    /* 1. Remove all default button styling */
    background: none;
    border: none;
    padding: 0;
    
    /* 2. Keep the hand cursor so it's obvious it's clickable */
    cursor: pointer;
    
    /* 3. Helps align the image with the text input */
    vertical-align: middle;
}

/* This styles the .png image inside your button */
.captcha-reload-btn img {
    /* 4. Set the size of your icon. Adjust as needed! */
    width: 24px;
    height: 24px;
    
    /* 5. Add a simple hover effect */
    transition: opacity 0.2s ease;
}

/* 6. Make the icon fade slightly on hover/click */
.captcha-reload-btn:hover img {
    opacity: 0.7;
}

.captcha-reload-btn:active img {
    opacity: 0.5;
}

.captcha-box input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-top: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box; 
}