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

/* Global Styles
   ========================================================================== */
html, body {
    width: 100%;
    height: 100%;
}

*, ::after, ::before {
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #fff;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 18px;
    background: #4e24a8 url('../images/background.png') no-repeat fixed center;
    background-size: cover;
}

a {
    color: #fff;
    text-decoration: underline;
}

a:hover {
    color: #ccc;
}

/* App Styles
   ========================================================================== */
.app {
    width: 100%;
    min-height: 100%;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .app {
        width: 768px;
    }
}

.app-logo {
    padding-top: 20px;
    text-align: center;
}

.app-logo img {
    height: 150px;
}

.app-content {
    width: 100%;
    padding: 0 32px;
    flex: 1;
}

.app-footer {
    padding: 12px 0;
    text-align: center;
    font-size: 0.7rem;
}

/* Container Style
   ========================================================================== */
.container {
    width: 100%;
    position: relative;
    padding: 32px 32px;
    margin-top: 32px;
}

.container:before {
    content: '';
    display: block;
    position: absolute;
    height: 50px;
    top: 0;
    left: 0;
    right: 0;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    border: 2px solid #fff;
    border-bottom: 0;
    z-index: -1;
}

.container:after {
    content: '';
    display: block;
    position: absolute;
    height: 50px;
    bottom: 0;
    left: 0;
    right: 0;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    border: 2px solid #fff;
    border-top: 0;
    z-index: -1;
}

.container-title {
    font-size: 1.3rem;
    font-weight: bold;
    padding-bottom: 16px;
}

.container-label {
    font-weight: bold;
    padding: 0 16px 16px 16px;
}

.container-input {
    padding: 0 16px 32px 16px;
}

.container-action {
}


/* Elements
   ========================================================================== */
input {
    width: 100%;
    height: 40px;
    color: #fff;
    font-size: 1.2rem;
    background: transparent;
    border: 0;
    border-bottom: 2px solid #ccc;
}

input::placeholder {
    color: #fff;
}

input:focus {
    border-bottom: 2px solid #fff;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}

button {
    width: 100%;
    height: 40px;
    font-size: 1.2rem;
    background: #fff;
    border-radius: 20px;
    border: 0;
    cursor: pointer;
}