﻿.glass-box {
    background-color: #ffffff10;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    width: 50%;
    height: 30%;
    border-radius: 25px;
    margin: auto;
    text-align: center;
}

.card-small {
    background-color:#ffffff;
    width: 45%;
    height: 60%;
    border-radius: 0px 25px;
    padding:5px;
    font-size:large;
    font-weight:bold;
}

.button-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.button {
    display: inline-block;
    background-image: linear-gradient(to right,#000428,#004e92);
    border: none;
    color: #FFFFFF;
    text-align: center;
    font-size: 28px;
    padding: 20px;
    width: 160px;
    transition: all 0.5s;
    cursor: pointer;
    margin: 5px;
    border-radius: 20px;
}

    .button span {
        cursor: pointer;
        display: inline-block;
        position: relative;
        transition: 0.5s;
    }

        .button span:after {
            content: '\00bb';
            position: absolute;
            opacity: 0;
            top: 0;
            right: -20px;
            transition: 0.5s;
        }

    .button:hover span {
        padding-right: 25px;
    }

        .button:hover span:after {
            opacity: 1;
            right: 0;
        }

.glass-pad {
    padding: 20px;
}

.form-card {
    width: 50%;
    height: auto;
    padding: 10px;
    background-color: white;
    border-radius: 15px;
    margin: auto;
}


.form-card-large {
    width: 60%;
    height: auto;
    padding: 10px;
    background-color: white;
    border-radius: 15px;
    margin: auto;
}

.form-card-xlarge {
    width: 70%;
    height: auto;
    padding: 10px;
    background-color: white;
    border-radius: 15px;
    margin: auto;
}