
html{
     margin: 0;
      padding: 0;
}
body{
    
      color:#993556;
      font-family: sans-serif;
       margin: 0;
      padding: 0;
   min-height: 100vh;
}
.container{
    display: flex;
    /* background-color: rgb(255, 240, 245); */
    background-color: rgb(255, 220, 240);
    min-height: 100vh;
   width: 100%;
   overflow: hidden;
   
}
.image-section {
  flex:1;
  position:relative;
  overflow: hidden;
    border-radius: 0 40px 40px 0; /* top-left top-right bottom-right bottom-left */
    pointer-events: none;
}

.image-section img{
    position:absolute;
    left: 0;
    top:0;
    height: 100%;
    width: 100%;
    object-fit:cover;
    display: block;
    object-position: 10% center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.image-section img.active{
    opacity: 1;
}
.slide-dots{
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
    pointer-events: none;
}
.dot{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    transition: background-color 0.3s ease;
     pointer-events: all; /* but each dot does */
    cursor: pointer;     /* shows hand cursor on hover too */
}
.dot.active{
    background-color: #fff;
}
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }
  .form-section {
    padding: 20px;
  }
}
.form-section{
    text-align: center;
    flex:0.5;
    padding:40px;
   display: flex;
    flex-direction: column;
    gap:15px;
    align-items: center;
    justify-content: center;
    
}

.form-section h1{
    margin:0;
}


.input{
    
    background-color: rgb(246, 183, 216);
    border: 2px solid transparent;
    outline: none;
    border-radius: 5px;
    padding: 5px;
    padding-left: 10px;
    font-size:x-small;
   box-sizing: border-box;
   height: 35px;
   width:100%;
   
}

.input:focus{
     border: 1px solid rgb(218, 126, 173);
}
.input::placeholder {
    color: rgb(184, 71, 129);
}

.remember-me{
    display:flex;
    font-size: x-small;
    /* color: rgb(104, 0, 179); */
    color: #993556;
   width:100%;
    justify-content: space-between;
     align-items: center;
     cursor: pointer;
}

.remember-check{
    display: flex;
    align-items: center;
    cursor: pointer;
     
}
.remember-check:hover{
     text-decoration: underline;
}

#forgot-password{
    text-decoration: underline;
}
#forgot-password:hover,#register-now:hover{
    color:#d16388;
}
#forgot-password:active,#register-now:active{
    color:blue;
}


input[type="checkbox"]{
     accent-color:#993556;
     outline: none;
     flex-shrink: 0;
}
.button{
    cursor: pointer;
   border: 1px solid transparent;
    border-radius: 5px;
    padding: 5px;
    font-size: x-small;
    display: flex;
  justify-content: center;
  align-items: center;
   height: 35px;
}
.btn-1{
    background-color: #993556;
  color: white;
  
}
.btn-1:hover {
  background-color: #b6325e;
}

.divider{
    display: flex;
    align-items: center;
    gap:10px;
    width:100%;
}
.divider hr{
  flex: 1;
  border: none;
  border-top: 1px solid #993556;
}

.divider span {
  font-size: x-small;
  color: #993556;
  margin: 0;
}
.signin-with{
    display: flex;
    width: 100%;
    align-items: center;
    gap: 10px;
    
}
.btn-2{
    flex:1;
    background-color:rgb(229, 122, 175);
   gap:5px;/* gap between google icon and Google,same for apple*/
}
.btn-2:focus{
border-color: rgb(241, 191, 216);
}
.btn-2:hover{
    background-color: rgb(240, 99, 170);
}
.signin-with img {
  margin: 0;
  width: 16px;
  height: 16px;
}
.auth-message{width:100%;margin:4px 0 0;font-size:.78rem;color:#a1264d}.auth-message.success{color:#39713c}
.oauth-button{text-decoration:none;color:black;display:flex;align-items:center;justify-content:center}
