* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
    /* background-color: #AD2787; */
    background: #AD2787;
    background: -webkit-linear-gradient(to left, #e4ffa6, #dfc010);
    background: linear-gradient(to left, #e4ffa6, #dfc010);


}

.container {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
}

form {
    width: 80%;
    height: 500px;
    padding: 20px;
    margin: auto;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.5);
    transform: translate(0);
    opacity: 1;
    animation: fadeIn 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}


@keyframes fadeIn {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
}

.image-b {
    width: 100%;
    /* margin-bottom: 20px; */
    /* padding: 15px; */
    display: flex;
    justify-content: center;
}

.form-b {
    width: 100%;
    margin-bottom: 20px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
}

.detail-b {
    width: 100%;
    margin-bottom: 20px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
}

.input-b {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.result1-b {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.result2-b {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


img {
    width: 250px;
    /* margin: 20px; */
}

label {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: bold;
}

input, select {
    width: 80%;
    padding: 10px;
    font-size: 18px;
    text-align: center;
    text-align-last: center;
    border: none;
    background: transparent;
    border-bottom: 1px solid #dfc010;
    outline: none;
}

.font-high {
    color: #dfc010;
    font-weight: bold;
    font-size: 30px;
    margin: 5px;
}

.font-small{
    color: #dfc010;
    font-size: 15px;
    margin: 5px;
}

/*===================================================
RESPONSIVE MOBILE
===================================================*/

@media (max-width:767px) {
	form {
        width: 95%;
        height: 650px;
    }

    .image-b {
        margin-bottom: 0px;
    }

    .form-b {
        margin-bottom: 0px;
        flex-direction: column;
    }

    .detail-b {
        margin-bottom: 0px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .input-b {
        flex-direction: row;
        justify-content: space-between;
        align-items: baseline;
        margin-bottom: 15px;
    }

    .result2-b {
        width: 50%;
        margin-bottom: 20px;
    }
    

    .font-high {
        font-size: 25px;
    }
}