
* {
  padding: 0;
  box-sizing: border-box;
}
body{
    margin: 0;  
    padding: 0; 
    height:100vh;
    background: rgba(106, 97, 230, 0.5);
    font-family: "Roboto Flex", sans-serif;
}
.header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0.8rem 2rem;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.logo-container{
  flex: 1;
}

.logo{
   height: 40px;
   width: auto;
   object-fit: contain;
}

.main {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10%;
  gap: 10px;
}

.main img{
 width: 70%;
 height: auto;
 object-fit: contain;
 border-radius: 30px;
}
.main-right,.main-left{
    width: 100%;
    height: auto;
}
.main-right{
    text-align: start;
    padding: 15px;
}
.main-right h1 {
  font-size:2rem;
  color: #222;
  margin-bottom: 20px;
  line-height: 1.3;
}

.main-right h1 span {
  color: #6a61e6; 
}
.main-right h1{
   color: #222;
  background: linear-gradient(
    to right,
    #222 20%,
    #6a61e6 40%,
    #f2f2f204 60%
  );
  background-size: 200% auto;        
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 2s linear infinite;
}
@keyframes shimmer {
  to {
    background-position: 200% center;  
  }
}

.buttons {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 12px 25px;
  border-radius: 15px;
  font-size: clamp(0.8rem, 2vh, 0.9rem);
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn.signup {
  background: #111;
  color: #fff;
  border: 2px solid  transparent;
}

.btn.signup:hover {
    border: 2px solid #6a61e6;
    background: transparent;
    color:  #6a61e6;
}

.btn.login {
  border: 2px solid #6a61e6;
  color:  #6a61e6;
  background: transparent;
}

.btn.login:hover {
  background: #6a61e6;
  color: #fff;
}

@media (max-width: 1100px) { 
  .main{
    display: flex;
    flex-direction: column;
    padding: 30% 10%;
  }
  .main img{
   width: 90%;
 }
 .main-right{
    background: rgba(0, 0, 0, 0.1);
    border-radius: 30px;
 }
 .main-right h1 {
  font-size:1.5rem;
}

}

