*,
p {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: mansropeRegular;
}

html,
body {
    font-size: 62.5%;
    height: 100%;
    width: 100%;
}


#main {
    height: 100%;
    width: 100%;
    position: relative;
    display: flex;
}

#main #register-l {
    display: flex;
    flex-direction: column;
    padding: 2rem 4rem 6rem 13rem;
    width: 70%;
    height: 100%;
    background-color: var(--background-color);
}

#register-l .rl-logo {
    height: 10%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: .5rem;
}

.rl-logo .logo-img {
    height: 90%;
    width: 25%;
}

.logo-img img {
    height: 100%;
    width: 100%;
}

#register-l .rl-main-img {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rl-main-img .main-img {
    height: 90%;
    width: 90%;
}

#main #register-r {
    width: 30%;
    height: 100%;
    padding: 6rem 6rem 5rem 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}


#register-r .live-demo {
    width: 100%;
}

.live-demo h1 {
    font-size: 2.8rem;
    font-family: mansropeBold;
    opacity: .7;
}
.responsive-logo{
    display: none;
}
.live-demo>p {
    font-size: 1.6rem;
    opacity: .7;
    font-family: mansropeRegular;
    margin: 1rem 0;
}
.live-demo p:nth-last-child(1) {
    text-align: center;
    font-size: 1.4rem;
    opacity: .7;
    font-family: mansropeRegular;
    margin: 2rem 0;
}
.live-demo p a{
    text-decoration: none;
    color: blue;
}

.live-demo .demo-input p {
    opacity: .7;
    font-size: 1.4rem;
    font-family: mansropeRegular;
    margin-bottom: .5rem;
}               

.live-demo .demo-input {
    margin: 2rem 0;
}

.live-demo .demo-input input {
    border-radius: 1rem;
    border: .5px solid var(--grey-color);
    font-size: 1.5rem;
    width: 100%;
    padding: 1rem;
    outline: none;
}

.live-demo .demo-input:nth-child(8) {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

.demo-input:nth-child(8) input {
    width: 4%;
}

.demo-input:nth-child(8) p {
    cursor: pointer;
    font-size: 1.4rem;
    font-family: mansropeMedium;
    margin-top: 0.7rem;
}
.demo-input:nth-child(8) p a{
    text-decoration: none;
    color: blue;
}

.live-demo button {
    cursor: pointer;
    font-size: 1.4rem;
    font-family: mansropeMedium;
    color: var(--price-para);
    background-color: var(--primary-color);
    border: none;
    color: var(--white-color);
    padding: 1rem 0;
    border-radius: 1rem;
    width: 100%;
}

@media screen and (max-width: 768px) {
    html,
body {
    font-size: 50%;
}
.responsive-logo{
    padding: 1rem 2rem;
    display: initial;
    height: 10vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.responsive-logo img{
    height: 6rem;
}
#main {
    flex-direction: column;
}
#main #register-l {
    display: none;
}
#main #register-r {
    width: 100%;
    height: 100%;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.live-demo .demo-input input {
    font-size: 1.8rem;
    padding: 1.2rem;
}
.live-demo button {
    font-size: 1.8rem;
    padding: 1.2rem 0;
    margin-top: 2vh;

}
}