/* Dark Theme 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: white;
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-login input[type="text"]:focus,
.page-login input[type="password"]:focus
{
    color: white;
    background-color: rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

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

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

.page-login .tile,
.page-login .tile:hover
{
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid #3f3f3f;
    color: #ffffff;
    padding: 32px;
    position: relative;
    text-decoration: none;
    margin-bottom: 24px;
}

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

.page-login .tile a
{
    display: inline-block;
    color: #A294F5;
    text-decoration: none;
    font-size: 18px;
    font-family: "Inter-Tight", 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: #FFFFFF;
    font-size: 18px;
    font-family: "Inter-Tight", 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: #1C1C1C !important;
}

.page-login .green-highlight
{
    background: #5B40FE !important;
}

.page-login .slider.slider-horizontal .slider-track{
    border: 1px solid #454545 !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: #ffffff; /* Ensure label color matches design */
    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(255, 255, 255, 0.3); /* Border matching input fields */
    border-radius: 4px; /* Slightly rounded corners */
    background-color: rgba(0, 0, 0, 0.2); /* Background matching input fields */
    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: rgba(255, 255, 255, 0.2); /* Slightly lighter background when checked */
    border-color: rgba(255, 255, 255, 0.5);
}

/* 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; /* White checkmark */
    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(255, 255, 255, 0.5); /* Highlight border on focus */
}



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