* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Barlow Semi Condensed', sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed&family=Outfit:wght@600&family=Poppins:wght@300&display=swap');

html,
body {
    background-color: #eb17cf;
    height: 100%;
    width: 100%;
}

#main {
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#box {
    background-color: white;
    /* height: 400px; */
    width: 40%;
    box-shadow: 0px 0px 5px grey;
    border-radius: 5px;
    padding: 15px;
}

#row{
    width: 100%;
    margin: 2rem;
    margin-left: 0;
}
.btn{
    width: 100%;
    background-color: #17c0eb;
    padding: 5px;
    font-size: 20px;
    color: white;
    border: none;
    border-radius: 5px;
}