.top {
    margin: 50px 20px 5px 20px;
    box-sizing: border-box;
    width: 100%;
    min-width: 600px;
}

.top .banner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0px;
    box-sizing: border-box;
    width: 100%;
    height: 70px;
}

.top .banner div {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    color: white;
    font-size: 20px;
    letter-spacing: 2px;
}

.top .banner .org {
    justify-content: flex-start;
}

.top .banner .period {
    justify-content: flex-end;
}

.top .banner div .label {
    color: #cccccc;
}

.top .banner div .value {
}


.content .content-inner .signup {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    margin-top: 200px;
    width: 600px;
    border-radius: 10px;
    box-sizing: border-box;
    background-color: #e0e0e0;
    overflow: hidden;
    padding-bottom: 30px;
    border: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);

}

.content .content-inner .signup .title {
    margin: 0;
    height: 50px;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    color: white;
    box-sizing: border-box;
    padding: 0px 20px 0px 20px;
    user-select: none;
    cursor: pointer;
    background-color: lightslategrey;
    letter-spacing: 1px;
    margin-bottom: 40px;
}

.content .content-inner .signup .row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    margin: 10px;
    width: 500px;
}

.content .content-inner .signup .row .label {
    display: block;
    color: black;
    margin-right: 10px;
    width: 150px;
    text-align: right;
}

.content .content-inner .signup .row .mobile {
    display: block;
    width: 300px;
    height: 40px;
    border: none;
    border-radius: 4px;
    box-sizing: border-box;
    padding-left: 10px;
    font-size: 19px;
    line-height: 40px;
    color: black;
    letter-spacing: 3px;
    background-color: white;
}


.content .content-inner .signup .row .mobile:focus {
    outline: none;
    background-color: white;
    color: black;
}

.content .content-inner .signup .row .mobile::placeholder {
    letter-spacing: 0px;
    font-size: 18px;
}


.valid {
    text-decoration: none;
}

.invalid {
    text-decoration: underline wavy red;
}

.content .content-inner .signup .row #smscode {
    display: block;
    width: 180px;
    height: 40px;
    border: none;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    background-color: white;
    box-sizing: border-box;
    padding-left: 10px;
    font-size: 19px;
    line-height: 40px;
    color: black;
    letter-spacing: 3px;

}

.content .content-inner .signup .row #smscode:disabled {
    background-color: rgba(255, 255, 255, 0.5);
}

.content .content-inner .signup .row #smscode:focus {
    outline: none;
    background-color: white;
    color: black;
}

.content .content-inner .signup .row #cmdSendSmsCode {
    display: block;
    width: 120px;
    height: 40px;
    border: none;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    background-image: linear-gradient(orange, orange);
    box-sizing: border-box;
    padding-right: 10px;
    font-weight: 100;
    line-height: 40px;
    font-size: 16px;
    color: white;
    text-align: center;
}

.content .content-inner .signup .row #cmdSendSmsCode:hover,
.content .content-inner .signup .row #cmdSendSmsCode:focus {
    outline: none;
    background-image: linear-gradient(darkorange, darkorange);
    cursor: pointer;
}

.content .content-inner .signup .row #cmdSendSmsCode:disabled {
    background-image: linear-gradient(grey, grey);
    color: white;
    pointer-events: none
}
