@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;

}

body {
    margin-top: 5rem;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

h1 {
    font-size: 2rem;
    margin-bottom: 1.8rem;
}

.form-control {
    position: relative;
    margin: 3.5rem 0;
    width: 300px;
}

.form-control input {
    border: 0;
    border-bottom: 1px solid orange;
    display: block;
    width: 100%;
    padding-top: 2.5rem;
    font-size: 20px;
}

.form-control label {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 20px;
    margin-bottom: 3rem;
    color: gray;
}

.btn button {
    cursor: pointer;
    display: inline-block;
    width: 100%;
    background: orange;
    color: aliceblue;
    font-size: 20px;
    padding: 1rem;
    border-radius: 6px;
}

.fa-solid {
    position: absolute;
    right: 1.2rem;
    top: 2.5rem;
}