body {
    display: flex;
    justify-content: center;
    padding: 30px 0;
    background-color: rgb(130, 127, 141);
    font-size: 16px;
    /* border: 5px solid #b30c0c; */
}

.container {
    border-radius: 5%;
    background: #ededed;
    background: linear-gradient(90deg, #e18138, #018dfff5);
    border: 5px solid #ffffff;
    width: 500px;
    height: 500px;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
}

form {}


/* --------------------------- */

.custom-btn {
    width: 130px;
    height: 40px;
    color: #fff;
    border-radius: 5px;
    padding: 10px 25px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5), 7px 7px 20px 0px rgba(0, 0, 0, .1), 4px 4px 5px 0px rgba(0, 0, 0, .1);
    outline: none;
    cursor: grab;
}

.box {
    cursor: pointer;
}

.btn-2 {
    background: rgb(96, 9, 240);
    background: linear-gradient(0deg, rgba(96, 9, 240, 1) 0%, rgba(129, 5, 240, 1) 100%);
    border: none;
}

.btn-2:before {
    height: 0%;
    width: 2px;
}

.btn-2:hover {
    box-shadow: 4px 4px 6px 0 rgba(255, 255, 255, .5), -4px -4px 6px 0 rgba(116, 125, 136, .5), inset -4px -4px 6px 0 rgba(255, 255, 255, .2), inset 4px 4px 6px 0 rgba(0, 0, 0, .4);
}