* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    background: url('/assets/background.jpg') no-repeat center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100vh;
}

body div.main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

body div.main span.title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 2.5rem;
}

body div.main button.btn {
    display: flex;
    border: none;
    outline: none;
    background: #5662f6;
    transition: all 0.3s ease;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    cursor: pointer;
    width: max-content;
}

body div.main button.btn:hover {
    background: #4349f5;
}

body div.main button.btn svg.icon {
    fill: #fff;
    margin-right: 0.5rem;
    weight: 1.5rem;
    height: 1.5rem;
}

body div.main button.btn span.text {
    font-size: 1.5rem;
    color: #fff;
}