* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100vw;
    height: 100vh;
    display:flex;
    justify-content: center;
    align-items: center;
    min-width: 1440px;
    background-color: gray;
}

.root {
    width: 1141px;
    height: 600px;
    display: flex;
}

.root>img {
    background-color: ghostwhite;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}

.content {
    width: 571px;
    height: 600px;
    background-color: ghostwhite;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content__form {
    width: 446px;
    height: 83px;
    background-color: white;
    margin-bottom: 23px;
    border-radius: 36px;
    display: flex;
    align-items: center;
    gap: 16px;
    position:relative;
}

.content__form > input {
    width: 100%;
    height: 100%;
    border-style: none;
    outline: none;
    display: flex; 
    border-left:none;
    border-right: none;
    padding:0 60px;
    border: 5px solid white;
    border-radius: 30px;
    box-shadow: inset 0 0 10px rgb(110, 108, 108);
}
.content__form > img{
    position:absolute;
    top: 29.5px;
    left:30px;
}
.content > h1 {
    margin-bottom: 97px;
    margin-top: 82px;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 900;
    font-size: 48px;
    line-height: 56px;
    color: #00838F;
}

.content__tick {
    width: 100%;
    height: 146px;
    background-color: ghostwhite;
    margin-top: 32px;
    padding: 0 93px;
    display: flex;
    justify-content: space-between;
    border-bottom-right-radius: 30px;
}

.content__tick--tick {
    display: flex;
    gap: 10px;
    width: 50%;
    align-items: flex-start;   
    position: relative;
}

.content__tick--tick > input {
    margin-top: 2.5px;
    width: 24px;
    height:24px;
    position: absolute;
    top:-6px;
    left:0;
}

.content__tick--tick > p {
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #616161;
    margin-left:40px;   
}

.content__tick--button {
    width: 122px;
    height: 40px;
    margin-top: calc(146px - 40px - 70px);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #00838F;
    border: none;
    border-radius: 4px;
}

.content__tick--button>span {
    font-family: 'Quicksand';
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.001em;
    color: #FFFFFF;
}

/* Responsive cho màn hình bé hơn 1440px */
/* nhừng màn hình bé <= 599px */
@media screen and (max-width:599px) {
    .root {
        flex-wrap: wrap;
        justify-content: center;
    }
}


