/*--------------------- Copyright (c) 2025 ----------------------- 
[Master Stylesheet] 
Project: Ads Tool
 ------------------------------------------------------------------- 
-------------------------------------------------------------------*/
:root {
    --ytc-font-color: #94a3b8;
    --ytc-primary: #38bdf8;
    --ytc-white: #ffffff;
    --ytc-danger: #ff0336;
    --ytc-font-family: 'Noto Sans', sans-serif;
    --ytc-input-bg: #263244;
    --ytc-input-color: #9b9b9d;
    --ytc-body-bg: #0f172a;
    --ytc-secondary: #192436;
    --ytc-gray: #18202c;
    --ytc-border-color: rgba(51, 65, 85, 0.6);
}

/*--------------- Global Style ---------------*/
body {
	font-family: var(--ytc-font-family);
	font-weight:400;
	font-size: 16px;
	line-height:1.78;
	-webkit-font-smoothing: antialiased;
    background: var(--ytc-body-bg);
}
*,*:before,*:after {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}
a, a:hover, a:focus {
	text-decoration: none;
	-webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
h1, h2, h3, h4, h5, h6 {
	font-family: var(--ytc-font-family);
	margin:0;
	text-transform:capitalize;
}
img {
	max-width: 100%;
}
input, textarea, select, button, label, svg, svg path, svg rect, svg polygon, img, a, :after, :before, :hover, :focus, .form-control:focus{
	outline: none !important;
	box-shadow:none;
}
ul{
	padding:0;
	margin:0;
	list-style-type: none;
}
p {
  margin: 0px;
}
/* width */
::-webkit-scrollbar {
    width: 8px;
}
/* Track */
::-webkit-scrollbar-track {
    background: #25344d;
}
/* Handle */
::-webkit-scrollbar-thumb {
    background: #36455b;
    width: 5px;
}
/* button css */

.ytc-btn {
    font-size: 14px;
    width: 100%;
    display: inline-flex;
    justify-content: center;
    font-weight: 600;
    border: none !important;
    outline: none;
    box-shadow: none;
    border-radius: 5px;
    color: var(--ytc-white);
    background-color: var(--ytc-primary);
    padding: 14px 15px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-transform: capitalize;
    min-width: 100px;
    text-align: center;
    text-decoration: none;
    background: linear-gradient(to right, #0EA5E9, #6366F1);
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
    transition: all 0.3s ease;
}
.ytc-btn:hover {
    color: var(--ytc-white);
}
.ytc-btn:before {
    background-color: var(--ytc-white);
    content: "";
    height: 100px;
    left: 0;
    bottom: 0;
    position: absolute;
    top: 0;
    transition: all 1.3s cubic-bezier(0.19, 1, 0.22, 1);
    width: 0%;
    border-radius: 6px;
    opacity: 0;
}

.ytc-btn:hover:before {
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0.1;
    width: 100%;
    right: 0;
}
.ytc-btn:focus {
    outline: 0 !important;
    box-shadow: none;
    color: var(--ytc-white);
}
/*---------------------- Input Style ----------------------*/
.ytc-input {
    position: relative;
    margin-top: 30px;
}
.ytc-input label {
    font-size: 15px;
    color: var(--ytc-white);
    font-weight: 400;
    position: absolute;
    top: 14px;
    left: 31px;
    text-transform: capitalize;
}
.ytc-input input {
    width: 100%;
    font-size: 14px;
    height: 78px;
    padding: 35px 60px 10px 30px;
    color: var(--ytc-input-color) !important;
    font-weight: 600;
    background: #0f172a !important;
    border-style: solid;
    border-width: 1px;
    border-color: #334155 !important;
    border-radius: 5px;
}
.ytc-input.ytc-input-error input {
    border-color: var(--ytc-danger);
}
.ytc-input img {
    position: absolute;
    top: 0;
    right: 30px;
    bottom: 0;
    margin: auto;
}
.ytc-input input::placeholder {
    color: var(--ytc-font-color);
	font-weight: 400;
    opacity: .4;
}
input:-webkit-autofill {
    background-color: transparent !important;
    -webkit-box-shadow: 0 0 0 50px #0f172a inset;
    -webkit-text-fill-color: var(--ytc-font-color);
}
.ytc-pass-img {
    cursor: pointer;
}
/* checkbox start */
.ytc-remember-section {
    margin-top: 26px;
}
.ytc-remember-section ul li {
    display: flex;
    justify-content: space-between;
	text-transform: capitalize;
}
.ytc-remember-section ul li span>a {
    color: var(--ytc-font-color);
    font-size: 16px;
	font-weight: 500;
}
.ytc-remember-section ul li span>a:hover {
    color: var(--ytc-primary);
}
.ytc-checkbox > input{
	position:absolute;
	left:-999999px;
}
.ytc-checkbox > label {
    position: relative;
    cursor: pointer;
    font-weight: 500;
    color: var(--ytc-font-color);
    margin: 0;
}
.multi-select-menuitems label input{
	opacity: 0;
}
.ytc-checkbox > label:before {
    content: "";
    margin: -1px 0 0px;
    width: 19px;
    height: 19px;
    border: solid 1px rgb(255 255 255 / 10%);
    background: rgb(255 255 255 / 10%);
    border-radius: 3px;
    display: inline-block;
    margin-right: 10px;
    vertical-align: text-top;
    -webkit-transform: translateY(3px);
    -moz-transform: translateY(3px);
    -ms-transform: translateY(3px);
    transform: translateY(2px);
    transition: 0.3s;
}
.ytc-checkbox > label:after {
    position: absolute; 
	content: "";
    top: 9px;
    left: 4px;
    width: 11px;
    height: 6px;
    border-left: 2px solid var(--ytc-white);
    border-bottom: 2px solid var(--ytc-white);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
	opacity:0;
	visibility:hidden;
	transition: 0.3s;
}
.ytc-checkbox > input:checked ~ label:after {
	 opacity:1;
	 visibility:visible;
}
.ytc-checkbox > input:checked ~ label:before {
    background: linear-gradient(to right, #0EA5E9, #6366F1);
    border: solid 1px transparent;
}
.ytc-checkbox > input:checked {
	color: var(--ytc-primary);
}
.ytc-remember-section h5 {
    font-size: 16px;
    color: var(--ytc-font-color);
    margin: 6px 0 0 47px;
    font-weight: 400;
    cursor: pointer;
}

/*--------------- Alert Style ---------------*/
.ytc-alert-box {
    position: fixed;
    right: 30px;
    top: 30px;
    border-radius: 10px;
    background-color: var(--ytc-secondary);
    border: solid 1px var(--ytc-border-color);
    width: 364px;
    padding: 25px;
    z-index: 999;
	opacity: 0;
    visibility: hidden;
	display: flex;
	align-items: center;
    -webkit-transition: all 0.2s cubic-bezier(0.65, 0.05, 0.36, 1);
    -moz-transition: all 0.2s cubic-bezier(0.65, 0.05, 0.36, 1);
    transition: all 0.2s cubic-bezier(0.65, 0.05, 0.36, 1);
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    transform: translateY(100%);
}
.ytc-alert-box.success {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    transform: translateY(0%);
}
.ytc-alert-box.error {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    transform: translateY(0%);
}
.ytc-happy-img {
    max-width: 180px;
    margin-right: 20px;
    flex: none;
}
.ytc-yeah h5 {
    color: #88df59;
    font-weight: 900;
    font-size: 18px;
}
.ytc-yeah p {
    color: #e1e2f0;
    font-size: 14px;
    margin-top: 3px;
}
.error .ytc-yeah h5 {
    color: var(--ytc-danger);
}
.ytc-hide{
	display: none;
}

/* Loader  */
.spinner-loader {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid var(--ytc-primary);
    border-radius: 50%;
    border-top-color: var(--ytc-white);
    animation: spin 1s ease-in-out infinite;
    -webkit-animation: spin 1s ease-in-out infinite;
    position: absolute;
    top: 20px;
    left: 120px;
    right: 0;
    margin: auto;
	display: none;
}
@keyframes spin {
  to { -webkit-transform: rotate(360deg); }
}
@-webkit-keyframes spin {
  to { -webkit-transform: rotate(360deg); }
}

/*------------ Auth CSS ------------*/
.ytc-auth-wrapper {
    text-align: left;
    padding: 50px 15px;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
	position: relative;
	z-index: 1;
	overflow: hidden;
    background-color: var(--ytc-body-bg);
    /* background-image: url(../images/bg_main_vh.png); */
}
/* .ytc-auth-wrapper:after {
    position: absolute;
    content: "";
    background-image: url(../images/login_banner.png);
    background-size: contain;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
} */
.active_animation img.ytc_share {
    left: 235px;
}
img.ytc_share {
    position: absolute;
    top: 53px;
    left: -80px;
    transition: 0.8s;
	animation: 9s installation infinite alternate;
}

.active_animation img.ytc_whatsup {
    left: 100px;
}
img.ytc_whatsup {
    position: absolute;
    top: -200px;
    left: -60px;
    bottom: 0;
    margin: auto;
	transition: 0.8s;
	animation: 8s installation infinite alternate;
}

.active_animation img.ytc_redius_left {
    left: 0px;
}
img.ytc_redius_left {
    position: absolute;
    top: -100px;
    left: -50px;
    bottom: -300px;
    margin: auto;
	transition: 0.8s;
	animation: 7s installation infinite alternate;
}

.active_animation img.messenger {
    left: 360px;
}
img.messenger {
    position: absolute;
    top: 130px;
    left: -90px;
    bottom: 0;
    margin: auto;
    z-index: 1;
	transition: 0.8s;
	animation: 6s installation infinite alternate;
}

.active_animation img.ytc_heartbit {
    left: 190px;
}
img.ytc_heartbit {
    position: absolute;
    left: -80px;
    bottom: 65px;
	transition: 0.8s;
	animation: 5s installation infinite alternate;
}

.active_animation img.glob {
	left: 0;
    right: 150px;
}
img.glob {
    position: absolute;
    bottom: 100px;
    z-index: 1;
    right: auto;
    left: -65px;
    margin: auto;
	transition: 0.8s;
	animation: 4s installation infinite alternate;
}
@keyframes installation {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}
.active_animation img.ytc_redius_right {
    right: 0px;
}
img.ytc_redius_right {
    position: absolute;
    top: 0;
    right: -70px;
	transition: 0.8s;
	animation: 3s installation infinite alternate;
}

.active_animation img.ytc_facebook {
    right: 80px;
}
img.ytc_facebook {
    position: absolute;
    top: 195px;
    right: -80px;
	transition: 0.8s;
	animation: 5s installation infinite alternate;
}

.active_animation img.ytc_like {
    right: 280px;
}
img.ytc_like {
    position: absolute;
    top: 0;
    right: -50px;
    margin: auto;
    bottom: -5px;
	transition: 0.8s;
	animation: 7s installation infinite alternate;
}

.active_animation img.ytc_redheart {
    right: 115px;
}
img.ytc_redheart {
    position: absolute;
    bottom: 175px;
    right: -62px;
	transition: 0.8s;
	animation: 8s installation infinite alternate;
}

img.oo {
    position: absolute;
    top: -40px;
    right: -35px;
}
img.trengle {
    position: absolute;
    bottom: 18px;
    right: -18px;
}
.ytc_login_flex {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    max-width: 1100px;
    width: 100%;
    background: var(--ytc-secondary);
    border-radius: 10px;
    position: relative;
    border: solid 1px var(--ytc-border-color);
}
.ytc_login_vector {
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 620px;
    padding: 65px 30px 35px;
    /* background-image: url(../images/vector-bg.png); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px 0 0 10px;
}

.ytc_vector_section {
    text-align: center;
}
.ytc_stop_dream {
    border-radius: 10px;
    border: solid 2px transparent;
    background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(90deg, #22D3EE, #ffcd5a, #e46ad9);
    background-origin: border-box;
    background-clip: content-box, border-box;
    box-shadow: 2px 1000px 1px #0f172a inset;
    text-align: center;
    position: relative;
    padding: 40px 50px;
    margin-bottom: -30px;
}
.ytc_stop_dream img.quote1 {
    position: absolute;
    top: -35px;
    right: 30px;
}
.ytc_stop_dream img.quote2 {
    position: absolute;
    bottom: -35px;
    left: 30px;
}
.ytc_stop_dream h1 {
    color: var(--ytc-white);
    text-align: left;
    font-weight: 700;
    font-size: 40px;
    text-transform: uppercase;
    line-height: 1.4;
}
.ytc_girl_pic {
    z-index: 1;
    position: relative;
    max-width: 320px;
}
.ytc-auth-container {
    display: flex;
    justify-content: center;
    max-width: 500px;
    z-index: 3;
    width: 100%;
    background: var(--ytc-secondary);
    padding: 60px 50px;
    border-radius: 0px 10px 10px 0px;
    position: relative;
    box-shadow: 0px 0px 60px 0px rgb(0 0 0 / 60%);
    /* border: 1px solid rgb(255 255 255 / 10%); */
}
.ytc-auth-container:before {
    position: absolute;
    content: "";
    /*background-image: url(../images/auth/blured-yt.png);*/
    background-size: contain;
    bottom: -30px;
    right: -35px;
    width: 80px;
    height: 80px;
    background-repeat: no-repeat;
    z-index: -1;
    filter: blur(1px);
}
.ytc-auth-container:after {
    position: absolute;
    content: "";
    /*background-image: url(../images/auth/yt.png);*/
    background-size: contain;
    bottom: -80px;
    left: -80px;
    width: 160px;
    height: 130px;
    background-repeat: no-repeat;
    animation: 6s rotationReverse linear infinite;
}
.ytc-auth-container>span:after {
    position: absolute;
    content: "";
    /*background-image: url(../images/auth/blured.png);*/
    background-size: contain;
    top: 20px;
    left: 20px;
    width: 80px;
    height: 80px;
    background-repeat: no-repeat;
}
.ytc-auth-row {
    width: 100%;
}
.ytc-auth-content h1 {
    font-size: 26px;
    color: var(--ytc-white);
    font-weight: 400;
    margin: 24px 0 5px;
}
.ytc-auth-content p {
    color: var(--ytc-font-color);
    margin-bottom: 42px;
    font-size: 15px;
    font-weight: 600;
}
.ytc-auth-btn-box {
    margin: 31px 0 0;
    position: relative;
}
.ytc-auth-btn-box>p {
    margin: 35px 0 0;
	font-size: 16px;
}
.ytc-auth-btn-box>p>a {
    color: var(--ytc-primary);
    font-weight: 600;
    margin-left: 5px;
}
.ytc-auth-btn-box>p>a:hover {
    color: var(--ytc-font-color);
}
/*Shaps */
.ytc-icons ul li {
    position: absolute;
}
.ytc-icons ul li:nth-child(1) {
    top: 0;
    left: 20%;
    bottom: 0;
    margin: auto;
    height: fit-content;
    animation: 6s rotation linear infinite;
}
.ytc-icons ul li:nth-child(2) {
    top: 30px;
    left: 7%;
    animation: 6s rotationReverse linear infinite;
}
.ytc-icons ul li:nth-child(3) {
    bottom: 50px;
    left: 3%;
    animation: 6s zoom-in-zoom-out linear infinite;
}
.ytc-icons ul li:nth-child(4) {
    top: 50px;
    right: 4%;
    animation: 6s downup linear infinite;
}
.ytc-icons ul li:nth-child(5) {
    top: 30px;
    bottom: 0;
    right: 20%;
    margin: auto;
    height: fit-content;
    animation: 6s wobble-horizontal linear infinite;
}
.ytc-icons ul li:nth-child(6) {
    bottom: 30px;
    right: 3%;
    animation: 6s updown linear infinite;
}


/* Animation*/

@keyframes rotation {
    0% {
        -webkit-transform: rotate(0deg) translate(-5px) rotate(0deg);
        -moz-transform: rotate(0deg) translate(-5px) rotate(0deg);
        -ms-transform: rotate(0deg) translate(-5px) rotate(0deg);
        -o-transform: rotate(0deg) translate(-5px) rotate(0deg);
        transform: rotate(0deg) translate(-5px) rotate(0deg);
        transition: 1s ease-in-out;
    }
    100% {
        -webkit-transform: rotate(360deg) translate(-5px) rotate(-360deg);
        -moz-transform: rotate(360deg) translate(-5px) rotate(-360deg);
        -ms-transform: rotate(360deg) translate(-5px) rotate(-360deg);
        -o-transform: rotate(360deg) translate(-5px) rotate(-360deg);
        transform: rotate(360deg) translate(-5px) rotate(-360deg);
        transition: 1s ease-in-out;
    }
}

@keyframes rotationReverse {
    0% {
        -webkit-transform: rotate(0deg) translate(-5px) rotate(0deg);
        -moz-transform: rotate(0deg) translate(-5px) rotate(0deg);
        -ms-transform: rotate(0deg) translate(-5px) rotate(0deg);
        -o-transform: rotate(0deg) translate(-5px) rotate(0deg);
        transform: rotate(0deg) translate(-5px) rotate(0deg);
        transition: 1s ease-in-out;
    }
    100% {
        -webkit-transform: rotate(-360deg) translate(-5px) rotate(360deg);
        -moz-transform: rotate(-360deg) translate(-5px) rotate(360deg);
        -ms-transform: rotate(-360deg) translate(-5px) rotate(360deg);
        -o-transform: rotate(-360deg) translate(-5px) rotate(360deg);
        transform: rotate(-360deg) translate(-5px) rotate(360deg);
        transition: 1s ease-in-out;
    }
}

@keyframes zoom-in-zoom-out {
    0% {
        transform: scale(.8, .8);
    }
    50% {
        transform: scale(1, 1);
    }
    100% {
        transform: scale(.8, .8);
    }
}

@keyframes updown {
    0% {
        transform: translateY(-10px);
    }
    50% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-10px);
    }
}

@keyframes downup {
    0% {
        transform: translateY(10px);
    }
    50% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(10px);
    }
}

@-webkit-keyframes wobble-horizontal {
    16.65% {
        -webkit-transform: translateX(8px);
        transform: translateX(8px);
    }
    33.3% {
        -webkit-transform: translateX(-6px);
        transform: translateX(-6px);
    }
    49.95% {
        -webkit-transform: translateX(4px);
        transform: translateX(4px);
    }
    66.6% {
        -webkit-transform: translateX(-2px);
        transform: translateX(-2px);
    }
    83.25% {
        -webkit-transform: translateX(1px);
        transform: translateX(1px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes wobble-horizontal {
    16.65% {
        -webkit-transform: translateX(8px);
        transform: translateX(8px);
    }
    33.3% {
        -webkit-transform: translateX(-6px);
        transform: translateX(-6px);
    }
    49.95% {
        -webkit-transform: translateX(4px);
        transform: translateX(4px);
    }
    66.6% {
        -webkit-transform: translateX(-2px);
        transform: translateX(-2px);
    }
    83.25% {
        -webkit-transform: translateX(1px);
        transform: translateX(1px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
/**/
.ytc-icons {
    position: absolute;
    top: 150%;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
}
.ytc-auth-bg-anim .ytc-icons {
    top: 0;
}
.ytc-auth-bg-anim .ytc-icons,
.ytc-icons {
    -webkit-transition: all 2s;
    -moz-transition: all 2s;
    -ms-transition: all 2s;
    -o-transition: all 2s;
    transition: all 2s;
}
/*--------------- Responsive Style ---------------*/

@media(max-width: 991px){
    .ytc_login_flex {
        width: auto;
        max-width: 100%;
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }
    .ytc-icons ul li:nth-child(1) {
        left: 1%;
    }
    .ytc-icons ul li:nth-child(5) {
        right: 2%;
    }
    .ytc-icons ul li {
        opacity: .1;
    }
}
@media(max-width: 767px){
    .ytc-auth-container:after {
        right: 0;
        left: 0;
    }
    .ytc-auth-wrapper {
        padding-bottom: 80px;
    }
}

@media(max-width: 575px){
    .ytc-auth-container {
        padding: 35px 20px 40px;
    }
    .ytc-remember-section ul li {
        flex-wrap: wrap;
    }
    .ytc-auth-container>span:after {
        display: none;
    }
    .ytc_stop_dream h1 {
    font-size: 24px;
    text-align: center;
}
.ytc_stop_dream img.quote1 {
    right: 0;
}
.ytc_stop_dream img.quote2 {
    left: 0;
}
.ytc_girl_pic {
    max-width: 220px;
}
.ytc-alert-box {
    width: 264px;
}
}