/* input.css */
@tailwind base;
@tailwind components;
@tailwind utilities;

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-image: url('/images/social.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: #0000002c;
  font-family: "Gilroy";
  height: 100vh;
  z-index: 1;
  
}
nav{
  background-color: red;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
  position: absolute;
  height:130x;
}
nav img{
  width: 200px;
}
.container {
  background-color:rgb(139, 89, 158);
  width: 450px;
  min-height: 600px;
  height: auto;
  position: absolute;
  margin: auto;
  margin-top: 65px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
  box-shadow: 2px 2px 3px -1px rgba(0, 0, 0, 0.5);
  z-index: 3;
  padding: 15px 0;
}
.content {
  width: 60%;
  margin: auto;
  text-align: center;
}
 
.img1{
  width: 70px;
  position: relative;
}
.header {
  font-size: 30px;
  font-weight: 500;
  margin-top: 20px;
  margin-bottom: 35px;
  line-height: 1px;
  color: #ef090d;
}
.detail {
  width: 100%;
  height: 48px;
  margin: 5px;
  padding: 15px;
  font-size: 15px;
  color: gray;
  border: 2px solid rgb(218, 214, 214);
  border-radius: 15px;
}
.detail:focus {
  box-shadow: 0px -7px 3px -2px rgba(15, 91, 231, 0.4),
    0px 7px 3px -2px rgba(15, 91, 231, 0.4),
    7px 0px 3px -2px rgba(15, 91, 231, 0.4),
    -7px 0px 3px -2px rgba(15, 91, 231, 0.4);
  outline: none;
}

.h4 {
  font-size: 14px;
  font-weight: 550;
  position: relative;
  float: left;
  margin: 5px;
  text-decoration: none;
  color: red;
}

.btn {
  width: 100%;
  height: 40px;
  border: hidden;
  border-radius: 20px;
  font-size: 18px;
  margin: 5px 0px;
}

.int {
  background-color:red;
  margin: 10px 0px;
  color: white;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}
.int:hover{
  background-color: #4d0fca;
}

.or {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 700;
}

.fbk {
  background-color: rgb(9, 128, 240);
  margin: 5px 0px;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s ease;
}
.fbk a {
  text-decoration: none;
  color: white;
  text-align: center;
  letter-spacing: 1px;
}
.fbk:hover{
  background-color: rgb(8, 110, 206);
}
.ggl{
  text-align: center;
  background-color: #ccc;
  transition: all 0.3s ease;
}
.ggl a {
  text-decoration: none;
  color: black;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}
.ggl:hover{
  background-color: #a0a0a0;
}

footer p {
  font-size: 12px;
  color: red;
  margin: 10px;
  opacity: 0.7;
}
p:last-child {
  opacity: 1;
}
footer p a{
  text-decoration: none;
  color: red;
  font-weight: 600;
}
hr {
  width: 50%;
  opacity: 0.4;
  margin-left: 25%;
}
.upbtn{
  text-decoration: none;
  color:red;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  padding: 11px 20px;
  background-color: #ccc;
  border-radius: 20px;
  transition: all 0.3s ease;
}
.upbtn:hover{
  background-color: #a0a0a0;
}
.google-logo {
  background: conic-gradient(from -45deg, #ea4335 110deg, #4285f4 90deg 180deg, #34a853 180deg 270deg, #fbbc05 270deg) 73% 55%/150% 150% no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.error{
  font-weight: 600;
  color: red;
  text-transform: capitalize;
  margin: 12px 0;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
  appearance: textfield;
}

.weather-container {
  padding: 8px;
  margin-left: auto;
  margin-right:20px;
}

.weather-container img {
  width: 24px;
  height: 24px;
}

.weather-container p {
  font-size: 12px; 
  margin: 2px 0; 
}
.profdets {
  padding-top: 10px;
  margin-top: 80px; 
}

/* Carousel Container */
.swiper-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* Ensure it stays behind other content */
}

/* Carousel Slides */
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
}

/* Carousel Images */
.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Navigation Bar at the Bottom */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: turquoise; 
  display: flex;
  justify-content: space-around;
  padding: 10px;
  z-index: 2; /* Ensure it stays above the carousel */
}

.bottom-nav a {
  color: white;
  text-decoration: none;
  font-size: 16px;
}

.bottom-nav a:hover {
  text-decoration: underline;
}
/* Background Carousel */
.background-carousel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* Ensure it stays in the background */
  background-size: cover;
  background-position: center;
  animation: carousel 9s infinite; /* 3 images * 3 seconds each = 9s */
}

/* Keyframes for the Carousel */
@keyframes carousel {
  0%, 33.33% {
    background-image: url('/images/social1.jpg');
  }
  33.33%, 66.66% {
    background-image: url('/images/social2.jpg');
  }
  66.66%, 100% {
    background-image: url('/images/social3.jpg');
  }
}
.weather-container{
  margin-left:100px;
}

.container-signup{
  background-color:rgb(139, 89, 158);
  width: 450px;
  min-height: 600px;
  height: auto;
  position: absolute;
  margin: auto;
  margin-top: 145px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
  box-shadow: 2px 2px 3px -1px rgba(0, 0, 0, 0.5);
  z-index: 3;
  padding: 15px 0;
}