@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

html {
    height: 100vh;
}

body {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgb(68,68,68);
}

.wrapper {
    max-width: 500px;
    min-height: 200px;
    width: 90%;
    background: #fff;
    border-radius: 5px;
    padding: 25px;
}

.wrapper header {
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    background: linear-gradient(90deg, #ff7e5f, #feea7b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.wrapper .inputField {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.inputField input {
    outline: none;
    width: 35%;
    height: 28px;
    border: 1px solid #ccc;
    font-size: 14px;
    border-radius: 3px;
    padding-left: 10px;  
}

.inputField .switch {
    width: 67.5px;
    height: 28px;
    outline: none;
    border: none;
    background: #ea6868;
    color: #fff;
    font-size: 17px;
    border-radius: 3px;
    cursor: pointer;
}

.lastPage {
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.lastPage button {
    width: 20%;
    height: 28px;
    outline: none;
    border: none;
    background: #68eaa3;
    color: #fff;
    font-size: 14px;
    border-radius: 3px;
    cursor: pointer;
}