﻿main {
    background-color: #f3f3f3;
}
section {
    padding: 60px 0;
    min-height: 550px;
}
h1 {
    text-align: center;
    padding-bottom: 10px;
    font-weight: 300;
}
.messageBox {
    width: 500px;
    margin: 0 auto;
    background: #FFF;
    padding: 40px;
    padding-top: 20px;
    border-radius: 10px;
    box-shadow: 1px 3px 9px 0px rgb(0 0 0 / 11%);
    text-align: center;
    font-family: 'Poppins';
}

    .messageBox.error {
    }

    .messageBox .icon {
        font-size: 90px;
        color: #34a939;
    }

    .messageBox.error .icon {
        color: #d74129;
        font-size: 70px;
        padding-bottom: 15px;
    }

    .messageBox.thankyou .icon {
        color: #b8c2c9;
        font-size: 80px;
        padding-bottom: 15px;
    }

    .messageBox.emailSent .icon {
        color: #128fd8;
        font-size: 80px;
        padding-bottom: 15px;
    }

    .messageBox .message {
    }

    .messageBox .button {
        padding-top: 40px;
    }

        .messageBox .button button {
            border: 0;
            background: #217abd;
            color: #FFF;
            font-size: 16px;
            font-weight: 400;
            padding: 0 15px;
            line-height: 40px;
            border-radius: 4px;
        }

            .messageBox .button button span.icon {
                color: #FFF;
                font-size: 16px;
                margin-right: 8px;
            }


            .messageBox .button button:hover {
                background-color: #0795ff;
                color: #FFF;
            }


    .messageBox .requestLink {
        padding-top: 30px;
        padding-bottom: 50px;
        margin: 0 auto;
        width: 90%;
    }
        .messageBox .requestLink input {
            border: 0;
            background: #e4e9ed;
            line-height: 44px;
            border-radius: 5px 0 0 5px;
            max-width: unset;
            padding: 0 15px;
            width: 250px;
            outline: none;
            font-size: 15px;
        }
        .messageBox .requestLink button {
            width: 124px;
            border: 0;
            background: #217abd;
            color: #FFF;
            font-size: 15px;
            font-weight: 400;
            padding: 0;
            line-height: 44px;
            border-radius: 0 5px 5px 0;
        }
            .messageBox .requestLink button:hover {
                background-color: #0795ff;
                color: #FFF;
            }
    .messageBox .altLogin {
        border-top: 1px solid #d0d9df;
        padding-top: 17px;
        font-size: 14px;
        color: #93a0a9;
    }


.plans {
    padding: 40px 0;
    text-align: center;
}

    .plans .wrapper {
        display: inline-block;
    }

    .plans .plan {
        display: inline-block;
        width: 320px;
        background: #FFF;
        margin: 0 15px;
        margin-bottom: 50px;
        margin-top: 50px;
    }

        .plans .plan .header {
            background: linear-gradient( 330deg, #263642, #687885);
            color: #FFF;
            font-family: 'Poppins';
            font-size: 24px;
            font-weight: 200;
            line-height: 120px;
            border-radius: 8px 8px 0 0;
        }

            .plans .plan .header.premium {
                background: linear-gradient( 330deg, #1974b9, #2d9cf1);
            }

            .plans .plan .header span {
                font-weight: 400;
            }

        .plans .plan .price {
            border: 1px solid #dadada;
            border-top: 0;
            border-bottom: 0;
        }

            .plans .plan .price .tag {
                padding-top: 30px;
                font-size: 25px;
            }

                .plans .plan .price .tag span {
                    color: #5d6a73;
                    font-size: 20px;
                }

        .plans .plan .info {
            padding-bottom: 35px;
            border: 1px solid #dadada;
            border-top: 0;
            border-radius: 0 0 8px 8px;
        }

            .plans .plan .info p {
                padding: 0 12px;
                padding-top: 20px;
                height: 160px;
                color: #525b63;
            }

            .plans .plan .info b {
                color: #2696ea;
            }

            .plans .plan .info button {
                border: 0;
                outline: none;
                background-color: #5b6b78;
                color: #FFF;
                width: 85%;
                line-height: 42px;
                font-weight: 500;
                font-size: 17px;
                border-radius: 3px;
            }
            .plans .plan .info button.premium {
                background-color: #2c9aee;
            }

                .plans .plan .info button:hover {
                    cursor: pointer;
                    background-color: #7a8c9b;
                }
                .plans .plan .info button.premium:hover {
                    cursor: pointer;
                    background-color: #28a3ff;
                }