/* Input Styles */
.page-login input[type="text"],
.page-login input[type="password"]
{
    display: block;
    width: 100%;
    height: 64px;
    padding: 8px 24px;
    font-size: 20px;
    line-height: 1.4;
    background-clip: padding-box;
    border-radius: 32px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.page-login input[type="text"]:focus,
.page-login input[type="password"]:focus
{
    outline: 0;
}

.page-login input[type="text"],
.page-login input[type="password"]
{
    color: #252525;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.125);
}

.page-login input[type="text"]:focus,
.page-login input[type="password"]:focus
{
    color: #252525;
    background-color: #ffffff;
    border-color: rgba(0, 0, 0, 0.25);
}

.page-login ::placeholder {
    color: #6c757d; /* Lighter placeholder text */
} 

.page-login .tile
{
    margin-top: 80px;
    border-radius: 32px;
    color: #252525;
    padding: 32px;
    display: block;
    text-decoration: none;
    transition: all 0.4s ease-in-out;
}

.page-login .tile,
.page-login .tile:hover
{
    background-color: #F6F6F6;
    border: none;
    color: #252525;
    padding: 32px;
    position: relative;
    text-decoration: none;
    margin-bottom: 24px;
}

.page-login .tile h3
{
    color: #101010;
    font-size: 32px;
    font-family: "Google Sans", sans-serif;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 24px 0;
}

.page-login .tile a
{
    display: inline-block;
    color: #1B1B1B;
    text-decoration: none;
    font-size: 18px;
    font-family: "Google Sans", sans-serif;
    font-weight: 600;
    line-height: 1.4;
    transition: transform 0.3s ease-in-out;
}

.page-login .tile a:hover
{
    transform: scale(1.05);
}

.page-login .tile .btn-primary
{
    background-color: #000000;
}

.page-login .tile p,
.page-login .tile li
{
    color: #252525;
    font-size: 18px;
    font-family: "Google Sans", sans-serif;
    font-weight: 500;
    line-height: 1.6;
}


.page-login .slider.slider-horizontal
{
    width: 100%;
}

.page-login .slider-selection,
.page-login .slider.slider-horizontal .slider-track
{
    background: #E0E0E0 !important;
}

.page-login .green-highlight
{
    background: #2baf59 !important;
}

.page-login .slider.slider-horizontal .slider-track{
    border: 1px solid rgba(0, 0, 0, 0.125) !important;
}

.page-login .text-danger
{
    color: #DA0F3B !important;
}



/* >= 1400 (XXL) */
@media (min-width: 1400px)
{
    .page-about .blured-shape
    {
        width: 54%;
    }
}

/* >= 1200 (XL) and <= 1400 (XXL) */
@media (min-width: 1200px) 
{
    .page-login .tile
    {
        margin-top: 128px;
    }
}

/* >= 992 (LG) and <= 1200 (XL) */
@media (min-width: 992px) and (max-width: 1200px)
{
    .page-login .tile
    {
        margin-top: 96px;
    }

    .page-about h1
    {
        font-size: 68px;
        /* Keep or adjust as needed for this range */
        line-height: 1.4;
        margin-top: 64px;
        margin-bottom: 232px;
    }

    .page-about .tile h3
    {
        font-size: 40px;
        margin: 0 0 16px 0;
    }

    .page-about .tile p,
    .page-about .tile li
    {
        font-size: 24px;
    }
}

/* >= 768 (MD) and <= 992 (LG) */
@media (min-width: 768px) and (max-width: 992px)
{
    .page-about h1
    {
        font-size: 60px;
        /* Keep or adjust as needed for this range */
        line-height: 1.4;
        margin-top: 64px;
        margin-bottom: 240px;
    }

    .page-about .blured-shape
    {
        filter: blur(56px);
    }

    .page-about .tile h3
    {
        font-size: 38px;
        margin: 0 0 16px 0;
    }

    .page-about .tile p,
    .page-about .tile li
    {
        font-size: 20px;
    }

    .page-about .tile.behance
    {
        padding-bottom: 87px;
    }
}

/* <= 768 (MD) */
@media (max-width: 768px)
{
    .page-login .tile,
    .page-login .tile:hover
    {
        margin-bottom: 96px;
    }
}

/* >= 576 (SM) and <= 768 (MD) */
@media (min-width: 576px) and (max-width: 768px)
{
   
}

/* <= 576px (XS) */
@media (max-width: 576px)
{
 
}

/* <= 540px */
@media (max-width: 540px)
{

}

/* <= 460px */
@media (max-width: 460px)
{

}

/* <= 400px */
@media (max-width: 400px)
{
    .page-login .tile,
    .page-login .tile:hover
    {
        padding: 24px;
    }
}

/* Custom Checkbox Styles for Login Page */
.page-login .form-group .checkbox label {
    font-size: 18px; /* Adjust label font size if needed */
    color: #252525;
    display: inline-flex; /* Align label and checkbox nicely */
    align-items: center; /* Center items vertically */
    cursor: pointer;
}

.page-login .form-group .checkbox input[type="checkbox"] {
    appearance: none; /* Remove default browser styling */
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 24px; /* Make checkbox larger */
    height: 24px; /* Make checkbox larger */
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 4px; /* Slightly rounded corners */
    background-color: rgba(0, 0, 0, 0.05);
    cursor: pointer;
    position: relative;
    vertical-align: middle;
    margin-right: 12px; /* Space between checkbox and label text */
    outline: none;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.page-login .form-group .checkbox input[type="checkbox"]:checked {
    background-color: #1B1B1B;
    border-color: #1B1B1B;
}

/* Custom checkmark using ::after pseudo-element */
.page-login .form-group .checkbox input[type="checkbox"]::after {
    content: '';
    display: block;
    width: 6px;
    height: 12px;
    border: solid #ffffff;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg) translate(-50%, -50%);
    position: absolute;
    left: 27%;
    top: 48%;
    opacity: 0; /* Hidden by default */
    transition: opacity 0.15s ease-in-out;
}

.page-login .form-group .checkbox input[type="checkbox"]:checked::after {
    opacity: 1; /* Show checkmark when checked */
}

/* Adjust focus style if needed */
.page-login .form-group .checkbox input[type="checkbox"]:focus {
     border-color: rgba(0, 0, 0, 0.4);
}



/* Social Auth */
.social-auth-divider {
    display: flex;
    align-items: center;
    margin: 24px 0;
}

.social-auth-divider::before,
.social-auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.15);
}

.social-auth-divider span {
    padding: 0 16px;
    color: rgba(0, 0, 0, 0.4);
    font-size: 18px;
    font-family: "Google Sans", sans-serif;
    font-weight: 500;
    white-space: nowrap;
}

.social-auth-buttons {
    display: flex;
    flex-direction: column;
}

.page-login .tile a.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    height: 64px;
    border-radius: 32px;
    font-size: 18px;
    font-family: "Google Sans", sans-serif;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: transform 0.2s ease-in-out;
    transform: none;
}

.page-login .tile a.btn-social:hover {
    text-decoration: none;
    transform: scale(1.03);
}

.page-login .tile a.btn-google {
    background-color: #ffffff;
    color: #1B1B1B;
    border: 1px solid rgba(0, 0, 0, 0.125);
}

.page-login .tile a.btn-google:hover {
    color: #1B1B1B;
    background-color: #f8f8f8;
}

.page-login .tile a.btn-google.is-loading svg {
    display: none;
}

.page-login p.help-block.help-block-error
{
    color: #DA0F3B;
    font-size: 18px;
    font-family: "Google Sans", sans-serif;
    font-weight: 500;
    line-height: 1.4;
    margin-top: 8px;
    margin-bottom: 16px;
    
}
