html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    /* min-height: 100vh; */
    padding: 0;
}

.footer {
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
    padding: 20px 0;
    margin-top: auto;
}

.footer-content {
    text-align: center;
    color: #6c757d;
    font-size: 14px;
}

.form-container {
    flex: 1;
    padding: 20px;
    display: flex;
    box-shadow: 0px 2px 8px rgba(0, 123, 255, 0.3) !important;

    flex-direction: column;
    justify-content: center;
    margin-top: 130px;
}

/* Tab Navigation */
.tab-navigation {
    display: flex;
    margin-bottom: 30px;
    border-bottom: 1px solid #e9ecef;
}

.tab-button {
    flex: 1;
    padding: 16px 0;
    text-align: center;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 500;
    color: #6c757d;
    cursor: pointer;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

        .tab-button:focus {
            outline: none;
            border: none;
        }
.tab-button.active {
    color: #0ab3e4;
    border: none;
}
.active{
            border-bottom: 2px solid #2196F3 !important;
        }

.tab-button:hover {
    color: #0ab3e4;
}

/* Form Groups */
.form-group {
    margin-bottom: 20px;
}

.form-group-new {
    margin-bottom: 20px;
}

/* Ensure all .for-form-input fields are the same width */
.for-form-input {
    width: 100%;
    box-sizing: border-box;
                border: 2px solid #e0e0e0 !important;

}
.for-form-input:focus{
    box-shadow: 0px 2px 8px rgba(0, 123, 255, 0.3);
                border-color: #0ab3e4 !important;

}

/* Make the intl-tel-input container match the input width */
.iti {
    width: 100%;
}

/* Password field styling */
.password-field {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.password-toggle:hover {
    opacity: 1;
}

/* Checkbox styling */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 20px 0;
}

.checkbox-group input[type="checkbox"] {
    margin: 0;
    width: auto;
}
label{
    font-size: 15px !important;
}
.checkbox-group label {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

/* Google Sign Up Button */
.google-signup {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #dadce0;
    border-radius: 8px;
    background: #ffffff;
    color: #3c4043;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 16px;
    text-decoration: none;
}

.google-signup:hover {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    background: #f8f9fa;
}

.divider {
    text-align: center;
    margin: 20px 0;
    color: #6c757d;
    font-size: 14px;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e9ecef;
    z-index: 1;
}

.divider span {
    background: #ffffff;
    padding: 0 16px;
    position: relative;
    z-index: 2;
}

.signin-link {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: #6c757d;
}

.signin-link a {
    color: #0ab3e4;
    text-decoration: none;
    font-weight: 500;
}

.signin-link a:hover {
    text-decoration: underline;
}


.btn1 {
            width: 100%;
            padding: 16px;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            margin-top: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
background:#0ab3e4;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);

            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .btn1::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s;
        }

        .btn1:hover {
            transform: translateY(-3px);
box-shadow: 0px 2px 8px rgba(10, 179, 228, 0.6);
        }

        .btn1:hover::before {
            left: 100%;
        }

        .btn1:active {
            transform: translateY(-1px);
        }

        @media (max-width: 480px) {
            .form-container {
                /* margin-top: 20px; */
                margin-bottom: 20px;
                min-height: 0;
                width: 90%;
                border-radius: 12px;
                padding: 0;
            }

            .divider {
                margin: 5px 0;
            }
            #registerForm{
                padding: 20px;
            }
            .tab-navigation{
                margin: 0;
            }

            .for-form-input {
                padding: 8px;
            }

            .btn1 {
                padding: 8px;
            }

            .google-signup {
                padding: 8px;
            }

            .tab-button {
                padding: 16px;
                font-size: 16px;
            }
        }


