* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    display: flex;
    height: 100vh;
    width: 100vw;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(0deg, #0f1a91 0%, #B721FF 100%);
}

.logo {
    width: 190px;
}

h1 {
    font-size: 8pt !important;
    font-weight: 600 !important;
    color: #fff;
}

.cod {
    margin-top: 20px;
    width: 190px;
    height: 40px;
    padding: 10px;
    background-color: transparent;
    border-radius: 15px;
    border: 2px solid #fff;
    color: #fff;
    text-align: center;
}

input::placeholder {
    color: white;
    font-weight: 500;
    text-align: center;
}

input:focus {
    box-shadow: 0 0 0 0;
    outline: 0;
    -moz-appearance: textfield;
    appearance: textfield;
}

input[type=text]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    font-size: 13px;
}

 ::-moz-placeholder {
    /* Firefox 19+ */
    font-size: 13px;
}

 :-ms-input-placeholder {
    /* IE 10+ */
    font-size: 13px;
}

 :-moz-placeholder {
    /* Firefox 18- */
    font-size: 13px;
}

.logo_button {
    background-color: transparent;
    border: 2px solid #fff;
    width: 50px;
    height: 50px;
    font-weight: 300;
    margin: auto;
    color: #fff;
}

main {
    margin-top: -150px;
}


/**
Style do Registration
*/

.alert {
    position: absolute !important;
    right: 10px !important;
    bottom: 10px !important;
    padding: 1rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}

.alert-success {
    background-color: #4caf50 !important;
    color: white !important;
}