* {
    box-sizing: border-box;
    font-family: cursive;
    margin: 0;
    padding: 0;
   
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}
/*msfo;fjfojfg8/8*/
body::before {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
       background-image: url(./images-&-gifs/photo-15113799.avif);   
    background-size: cover;
      background-size: cover;
    
      filter: blur(4px);
      z-index: -1; /* behind the content */
    }

.container {
    width: 70%;
    height:600px;
    background-image:url(./images-&-gifs/interior-8750704_1280.jpg);
    background-size: auto;
    /* background-color: #fafbff; */
    display: flex;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 8px 8px 48px 24px #000000;
}

.left {
    background-image: url("./cloud.jpg");
    background-size: cover;
    /* color: #fff; */
    padding: 40px;
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.left img{
    border-radius: 20%;
}
/* #logo_img{
    background-image: url(./logo_img.png);
    background-size: cover;
    height:160px;
    width:160px;
} */

.left h2 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 2.5em;
}

.left h1 {
    margin-bottom: 20px;
    font-size: 3em;
    color: rgb(76, 9, 76);
  
}

.left p {
    font-size: 14px;
    margin-top: 42px;
}

.right {
    width: 60%;
    padding: 40px;
}

.right h2 {
    margin-top: 30px;
    margin-bottom: 29px;
    font-size: 1.5rem;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    font-size: 14px;
    margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 12px;
}

.checkbox label {
    margin-left: 5px;
}

.checkbox a {
    color: #0066cc;
    text-decoration: underline;
}

.btn-signup {
    background-color: #0066cc;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 10px;
    margin-top: 33px;
}

.btn-signup:hover {
    background-color: #005bb5;
}

.btn-signin {
    background-color: white;
    color: #0066cc;
    border: 1px solid #0066cc;
    padding: 12px;
    border-radius: 5px;
    cursor: pointer;
}

.btn-signin:hover {
    background-color: #f0f8ff;
}

/* Responsive styles */
@media (max-width: 900px) {
    *{
        font-family: Exo, Fira Sans Condensed, Arial, sans-serif;
     }
    .container {
        /* flex-direction: column; */
        width: 90%;
    }

    .left, .right {
        width: 100%;
        padding: 20px;
    }

    .left {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .right {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }
}

@media (max-width: 500px) {
      *{
        font-family: Exo, Fira Sans Condensed, Arial, sans-serif;
     }
    .left h1 {
        font-size: 24px;
        color: rgb(175, 105, 175);
    }

    .left p {
        font-size: 12px;
    }
    .left{
        background-size: auto;
    }

    input[type="text"],
    input[type="email"],
    input[type="password"] {
        padding: 8px;
        font-size: 14px;
    }

    .btn-signup, .btn-signin {
        padding: 10px;
        font-size: 14px;
    }
    .container {
    width: 90%;
    height:50rem;
    background-color: #fff;
    flex-wrap: wrap;
    overflow:scroll;
    }
    .left {
        height:30%;
    background-image: none;
    background-size: cover;
    color: #005bb6;
    }
    .right h2 {
    margin-bottom: 20px;
    margin-top: 8px;
    }
    #logo_img{
    background-image: url(./logo_img.png);
    background-size: cover;
    height:120px;
    width:120px;
   }
   .left img{
    height:50%;
   }
}


