@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;700&display=swap');


body {
    font-family: 'Rubik', sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.bg {
    background-color: hsl(270, 20%, 96%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Push background behind other content */
}

.bg-left {
    position: absolute;
    top: 0;
    left: -100px;
    background-color: hsl(276, 55%, 52%);
    height: 700px;
    width: 500px;
    border-radius: 0px 0px 250px 250px;
}

.bg-right {
    position: absolute;
    top: 100px;
    right: -100px;
    background-color: hsl(271, 15%, 43%);
    height: 700px;
    width: 500px;
    border-radius: 250px 250px 0px 0px;
    opacity: 5%;
}

.container-mobile{
    position: relative;
    background-color: white;
    width: 250px;
    height: 500px;
    top: 150px;
    left: 350px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 5px hsl(206, 6%, 79%);
}

.app-body{
    background-color: hsl(270, 20%, 96%);
    width: 230px;
    height: 480px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.app-navbar{
    background-image: linear-gradient(to left, hsl(293, 100%, 63%), hsl(264, 100%, 61%));
    width: 230px;
    height: 70px;
    border-radius: 20px 20px 5px 5px;
    display: flex;
    align-items: center;
}

.notch{
    position: absolute;
    background-color: white;
    width: 150px;
    height: 20px;
    border-radius: 0px 0px 20px 20px;
}

.profile-img{
    background-color: white;
    border-radius: 50px;
    width: 20px;
    height: 20px;
    padding: 2px;
    margin: 35px 10px 10px 10px;
}

.profile-info{
    display: flex;
    flex-direction: column;
    width: 230px;
}

.profile-name{
    color: white;
    margin: 0px;
    padding-top: 20px;
    width: 150px;
    font-weight: 500;
}

.profile-status{
    color: white;
    margin: 0px;
    font-size: 10px;
    opacity: 50%;
}

.dots{
    display: flex;
    flex-direction: column;
    margin: 40px 20px 20px 20px;
}

.dot{
    height: 2px;
    width: 2px;
    background-color: white;
    margin: 1px;
}

.chat-box{
    width: 230px;
    display: flex;
    flex-direction: column;
}

.recived-msg-box{
    background-color: hsl(206, 6%, 79%);
    width: 150px;
    border-radius: 10px;
    align-self: flex-start;
    align-items: center;
    margin: 5px 0px 0px 5px;
}

.recived-msg{
    padding: 5px 10px 5px 5px;
    font-size: 11px;
    margin: 0px;
    font-weight: 400;
}

.sender-imgs{
    display: flex;
    align-self: flex-end;
}

.send-img{
    width: 40px;
    height: 40px;
    border-radius: 10px;
    margin: 5px 5px 0px 0px;
}

.send-msg-box{
    background-color: white;
    width: 150px;
    border-radius: 10px;
    align-self: flex-end;
    align-items: center;
    margin: 5px 5px 0px 0px;
}

.send-msg{
    padding: 5px 10px 5px 5px;
    font-size: 11px;
    margin: 0px;
    font-weight: 400;
}

.price-box{
    background-image: linear-gradient(to left, hsl(293, 100%, 63%), hsl(264, 100%, 61%));
    width: 200px;
    margin: 5px 0px 0px 5px;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.radio{
    width: 10px;
    height: 10px;
    margin: 5px 2px 5px 5px;
    border-radius: 50px;
    border: 2px solid white;
}

.price{
    width: 120px;
    margin-left:70px ;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.price-details{
    font-size: 12px;
    margin: 5px 5px 5px -70px;
}

.price-value{
    font-size: 18px;
    font-weight: 700;
    margin: 5px 10px 5px 0px;
}

.text-area{
    position: absolute;
    background-color: white;
    width: 220px;
    margin: 25px 5px 10px 5px;
    border-radius: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.placeholder{
    margin: 10px;
    font-size: 12px;
}

.submit{
    height: 30px;
    width: 30px;
    transform: rotate(180deg);
    margin: 0px 0px 0px 70px;
}

.text{
    position: absolute;
    width: 400px;
    left: 700px;
    bottom: 300px;
}

.text-heading{
    font-size: 30px;
    font-weight: 700;
}

.text-details{
    margin-top: -20px;
    font-size: 16px;
}