body {
    background-color: #FFF;
}

#app {
    align-items: center;
    background-color: #FFF;
    display: flex;
    justify-content: center;
    /* height: 100vh; */
}

.logo-main {
    display:block;
    margin:5px auto;
    width:100%;
    max-width: 300px;
}

.logo-secondary {
    max-width:250px;
    height:auto;
}

.my-guest-payment-outer {
    text-align:center;
    margin:20px;
}

.form {
    background-color: #d3e8f8;
    border-radius: 20px;
    box-sizing: border-box;
    padding: 20px;
    width: 100%;
    max-width:410px;
    margin:5px auto;
}

.title {
    color: #595959;
    font-family: sans-serif;
    font-size: 26px;
    font-weight: 600;
    margin-top: 10px;
}

.subtitle {
    color: #595959;
    font-family: sans-serif;
    font-size: 14px;
    font-weight: 400;
    margin-top: 10px;
}

.input-container {
    height: 50px;
    position: relative;
    width: 100%;
}

.ic1 {
    margin-top: 40px;
}

.ic2 {
    margin-top: 30px;
}

.input {
    background-color: #303245;
    border-radius: 12px;
    border: 0;
    box-sizing: border-box;
    color: #eee;
    font-size: 17px;
    height: 100%;
    outline: 0;
    padding: 4px 20px 0;
    width: 100%;
}

.cut {
    background-color: #d3e8f8;
    border-radius: 10px;
    height: 20px;
    left: 20px;
    position: absolute;
    top: -20px;
    transform: translateY(0);
    transition: transform 200ms;
    width: 120px;
}

.cut-medium {
    width: 86px;
}


.cut-short {
    width: 50px;
}

.input:focus ~ .cut,
.input:not(:placeholder-shown) ~ .cut {
    transform: translateY(8px);
}

.placeholder {
    color: #bebedf;
    font-family: sans-serif;
    left: 20px;
    line-height: 14px;
    pointer-events: none;
    position: absolute;
    transform-origin: 0 50%;
    transition: transform 200ms, color 200ms;
    top: 20px;
}

.input:focus ~ .placeholder,
.input:not(:placeholder-shown) ~ .placeholder {
    transform: translateY(-30px) translateX(10px) scale(0.75);
}

.input:not(:placeholder-shown) ~ .placeholder {
    color: #808097;
}

.input:focus ~ .placeholder {
    color: #1b75bc;
}

.submit {
    background-color: #08d;
    border-radius: 12px;
    border: 0;
    box-sizing: border-box;
    color: #eee;
    cursor: pointer;
    font-size: 18px;
    height: 50px;
    margin-top: 38px;
    text-align: center;
    width: 100%;
}

.submit:active {
    background-color: #06b;
}

#my-info-messages-fail {
    display:none;
    background-color: #ff0000;
    color: #FFF;
    font-size: 14px;
    margin-top: 10px;
    border-radius: 15px;
    padding: 8px;
    max-width:410px;
}

#my-info-messages-success {
    display:none;
    background-color: #28ac28;
    color: #FFF;
    font-size: 14px;
    margin-top: 10px;
    border-radius: 15px;
    padding: 8px;
    max-width:410px;
}

.footer-info {
    margin-top:40px;
    font-size:10px;
    max-width:410px;
}

.footer-info .logo-everypay {
    width:350px;
}