*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Helvetica, Arial, sans-serif;
}

.wrapper{
    background-color: transparent;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.right{
    width: 100%;
}

.right form{
    background-color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    border-radius: 20px;
    width: 100%;
}

h1{
    color: #3f414d;
    font-size: 30px;
    font-weight: 600;
    text-align: center;
}

label{
    font-size: 16px;
    color: #3f414d;
    margin-bottom: .5rem;
    display: flex;
    justify-content: space-between;
}

.input-group{
    width: 100%;
    display: flex;
    flex-direction: column;
}

input{
    height: 45px;
    line-height: 45px;
    background: transparent;
    border: 1px solid #d7dbda;
    font-size: 15px;
    color: #555;
    border-radius: 10px;
    text-align: left;
    padding: 0 10px;
}

input:focus {
    outline: none;
    border-color: #089bab; /* Change border color to match the background when focused */
}

img{
    width: 180px;
    height: 180px;
}

body{
    margin: 30px;
    background-color: #089bab;
}

button{
    display: inline-block;
    text-align: center;
    max-width: 300px;
    border: 1px solid transparent;
    padding: .375rem 1.2rem .3rem;
    border-radius: 25px;
    background: linear-gradient(to right, rgba(8, 155, 171, 1) 0%, rgba(13, 181, 200, 1) 100%);
    align-self: center;
    font-size: 16px;
    color: #d7dbda;

}

.project8 th{
    width: 12%;
}

.project6 th{
    width: 10%;
}

button:hover{
    background: linear-gradient(to right, rgba(13, 181, 200, 1) 0%, rgba(8, 155, 171, 1) 100%);
}

a {
    color: #0DB5C8; 
    text-decoration: none;
}

.btn-with-icon {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .btn-with-icon svg {
    margin-right: 8px; /* Optional: Space between icon and text */
  }

@media (min-width: 880px) {
    body{
        background-color: #eff7f8;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .wrapper{
        flex-direction: row;
        background-color: #089bab;
        height: 488px;
        border-radius: 30px;
        position: relative;
        /* max-width: 720px; */
        max-width: 480px;
        width: 100%;
        padding-left: 30px;
        margin-top: 50px;
        left: -6rem;
        padding-right: 150px;
        border-radius: 40px;
    }

    .right form{
        border-radius: 40px;
        height: 390px;
        width: 420px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: -45%;
        align-items: start;
    }

    img{
        translate: 0 -10px;
        width: 220px;
        height: 220px;
    }
}

@media (min-width: 1200px) {
    .wrapper{
        max-width: 720px;
        padding-left: 50px;
    }

    .right form{
        width: 570px;
        right: -23%;
    }
}