* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

body {
     background-color: #1B9CFC;
     font-family: 'Roboto', sans-serif;
}

.main {
    width: 100%;
    height: 96vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#box {
    width: 40%;
    /* height: 400px; */
    padding: 15px;
    box-shadow: 0px 0px 5px grey;
    background-color: white;
}

.row {
    width: 100%;
    margin: 2rem;
    margin-left: 0;
}

.btn {
    width: 100%;
    padding: 5px;
    font-size: 20px;
    font-weight: bolder;
    color: white;
    border: none;
    border-radius: 5px;
    background-color: rgb(70, 188, 70);
}

.btn_2 {
    width: 100%;
    padding: 5px;
    font-size: 20px;
    font-weight: bolder;
    color: white;
    border: none;
    border-radius: 5px;
    background-color: rgb(227, 28, 28);
}
