* {
    margin: 0;
    padding: 0;
}

body {
    overflow-x: hidden;
    background-color: #0066ff;
}

main {
    background-color: white;
    width: 598px;
    height: 690px;
    border-radius: 20px;
    margin-left: calc((100vw - 598px) / 2);
    margin-top: calc((100vh - 690px) / 2);
    display: flex;
    flex-direction: column;
    align-items: center;
}

main>img {
    margin-top: 71px;
}

#title {
    margin-top: 24px;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 28px;
    color: #292929;
}

#rule {
    margin-top: 12px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    color: #A6A6A6;
}

.nameInput {
    margin-top: 49px;
    font-family: 'Montserrat';
    width: 374px;
    font-style: normal;
    font-weight: 600;
    font-size: 13px;
    line-height: 16px;
    color: #292929;
}

#email, #password {
    margin-top: 11px;
    background: #EFF3F7;
    border: 1px solid #a4a4a4;
    border-radius: 10px;
    width: 374px;
    height: 52px;
    text-indent: 20px;
    font-family: 'Montserrat';
    font-size: 13px;
    color: #292929;
}

.submitBtn {
    cursor: pointer;
    margin-top: 66px;
    width: 374px;
    height: 52px;
    background-color: #0066ff;
    border-radius: 10px;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
    display: flex;
    justify-content: center;
    align-items: center;
}

.submitBtn>p {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: #ffffff;
}