@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/*@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@1,100..900&display=swap');*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
	font-family: "Poppins", sans-serif;
}
body{ background-color: #171e81;}
.element {
    background-image: url('../img/Watcho-Social-1.png');
    background-size: cover;
    background-position: center;  /* Optional: to center the image */
    background-repeat: no-repeat; /* Optional: to prevent the image from repeating */
    height: 100vh; /* Optional: adjust the height as needed */
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(85, 37, 197, 0.884); /* semi-transparent black */
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    z-index: 2;
  }
.slider {
    position: relative;
    width: 100%;
    height: 100vh;
   
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-size: cover;
    background-position: center;  /* Optional: to center the image */
    background-repeat: no-repeat; /* Optional: to prevent the image from repeating */
    height: 100vh; /* Optional: adjust the height as needed */
    animation: slideAnimation 12s infinite;
}

@keyframes slideAnimation {
    0% {
        opacity: 1;
    }
    33% {
        opacity: 0;
    }
    66% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.content {
    width:60%;
    background-color: #143fb6c7;
  /*  position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);*/
    text-align: center;
    z-index: 10;
	border-radius: 2%;
	padding:0px;
    margin:auto;
	
}
.logo{background-color: white;  border-radius: 5px;}
.logo img {
    width: 30%;
    margin-bottom: 0px;
}

h1 {
    margin: 5px 0;
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
}
h2 {
    margin: 5px 0;
    font-size: 1rem;
    font-weight: bold;
    color: white;
}
label{ color:#FFFFFF; font-size:10px}
.checkbox-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height:auto;
}

/* Hide the default checkbox */
input[type="checkbox"] {
    display: none;
}

/* Custom checkbox label */
.custom-checkbox {
    display: flex;
	flex-direction: column;
    align-items: center;
    font-size: 12px;
    cursor: pointer;
    user-select: none;
}

/* The visual representation of the checkbox */
.custom-checkbox .checkmark {
    width: 22px;
    height: 22px;
    border: 2px solid #bbb;
    border-radius: 4px;
    background-color: white;
    margin-right: 12px;
    position: relative;
    transition: background-color 0.3s, border-color 0.3s;
}

/* When checkbox is checked */
input[type="checkbox"]:checked + .checkmark {
    background-color: #4caf50;
    border-color: #4caf50;
}

/* Add a checkmark when checked */
input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    top: 0px;
    left: 4px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

/* Hover effect */
.custom-checkbox:hover .checkmark {
    border-color: #888;
}

/* Focus effect when tabbed into */
input[type="checkbox"]:focus + .checkmark {
    outline: 2px solid #4caf50;
}
form input, textarea{
    background-color: transparent;
    width: 80%;
    padding: 10px;
    margin: 10px 0;
    font-size: 1rem;
    border: solid 1px #CCCCCC ;
    border-radius: 5px;
    color: white;

}
.m10 { margin: 10px;}
form button {
    width: 80%;
    padding: 10px;
    background-color: #ff7b7b;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    color: white;
    cursor: pointer;
    margin-bottom: 10px;
}

form button:hover {
    background-color: #ff3b3b;
}
.otpcolor{color:#00FF00;}
.error{ color:#FF0000}
h3{ font-size:36px; color:#FFFFFF}
h4{ font-size:24px; color:#FFFFFF; padding:15px;}
.btn-danger{
  	width:50%;
    padding: 10px;
    background-color: #ff7b7b;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    color: white;
    cursor: pointer;
    margin:auto;
	
}
.btn-danger a{ text-decoration:none; color:#FFFFFF}

.btn-danger:hover{
background-color: #ff3b3b;
}
@media (max-width: 768px) {
    .overlay{display: none;}
    .content {
        background-color: #143fb6;
        padding: 3px;
		width:80%;
		top: 55%;
        color: #CCCCCC;
    }
.logo{background-color: white;  border-radius: 10px;}
    h1 {
        font-size: 1.6rem;
        color: white;
       
    }
    h2 {
        margin: 5px 0;
        font-size: 1rem;
        font-weight: bold;
        color: white;
    }

    form input, textarea,
    form button {
        width: 90%;
        color: white;
    }
}
