*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body { 
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background:  linear-gradient(90deg, #ffffff);
}

.wrapper {
    width: 60vh;
    border-radius: 5px;
    background: #f0f0f0;
    padding: 1rem 0.5rem;
    box-shadow: 0 0px 2.2px rgba(0, 0, 0, 0.028), 0 0px 5.3px rgba(0, 0, 0, 0.04) rgba(0, 0, 0, 0.05);
}

h2 {
    background: #ee4d2d;
    border-radius: 5px;
    color: #fff;
    letter-spacing: 0.1rem;
    padding: 1rem;
    cursor: default;
}

.wrapper p{
    background: #c9c9c9;
    color: #062c33;
    display: block;
    padding: 10px;
    border-radius: 5px;
}

.wrapper img{
    display: block;
    padding: 30px;
    width: 70%;
    margin: 0.1rem 1rem 1rem 0rem;
}

.foto input{
    position: relative;
    padding: auto;
    background: #1dbcfd
}
form img{
    padding-top: 10px;
    height: 60%;
    width: 60%;
    object-fit: cover;
}

form label {
    margin-top: 0.5rem;
    background: #F5F5F5;
    display: block;
    padding: 12px;
    border-radius: 4px;
    width: 100%;
    line-height: 25px;
    border: 1px solid #e5e5e5;
    position: relative;
    cursor: pointer;
}

.sebelumnya {
    background: red;
    color: #fff;
    font-weight: bold;
    margin-top: 1rem ;
    padding: 0.5rem 1rem;
    border: none;
    cursor: pointer;
    transition: background 0.15s;
}

.sebelumnya {
    float: right;
    background: red;
    color: #fff;
    font-weight: bold;
    margin-top: 1rem ;
    padding: 0.5rem 1rem;
    border: none;
    cursor: pointer;
    transition: background 0.15s;
}

.sebelumnya:hover {
    background: rgba(173, 216, 230, 1);
    color: black;
    shadow: 20px #ee4d2d;
}

.selanjutnya {
    border-radius: 5px;
    background: #ee4d2d;
    color: #fff;
    font-weight: bold;
    margin-top: 1rem ;
    padding: 0.5rem 1rem;
    border: none;
    cursor: pointer;
    transition: background 0.15s;
}

.selanjutnya:hover {
    background: rgba(173, 216, 230, 1);
    color: black;
}


/*Respond*/

@media screen and (min-width: 456px){
    .wrapper {
    width: 70%;
    }}

@media screen and (min-width: 768px){
    .wrapper {
    width: 65%;
}}

@media screen and (min-width: 992px){
    .wrapper {
    width: 55%;
}}

@media screen and (min-width: 1200px){
    .wrapper {
    width: 45%;
}}

@media screen and (min-width: 1500px){
    .wrapper {
    width: 35%;
}}
