@import url('https://fonts.googleapis.com/css?family=Open+sans|Source+Code+Pro');

:root {
    --color-background: #F0F0F7;
    --color-dark: #18181a;
    --color-yellow: #e5b622;
    --color-red: rgb(191, 62, 67);
    --color-gray: #becc2c1;
    --yellow: #f5b945;
    --color-dark-medium: #282a36;
    --color-green: rgb(80, 250, 123);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.6),rgba(200,0,0,0.4)),url(../novo/assets/imgs/background.png) no-repeat left center fixed;
    background-size: cover;
    font-family: "Source Code Pro", serif;
    color: var(--color-green);
}

    body > section {
        max-width: 500px;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        margin-bottom: 3.6rem;
    }

a {
    background-color: var(--yellow);
    padding: 8px;
    text-decoration: none !important;
    border-radius: .3rem;
    transition: all .5s ease-in-out;
    color: #000;
    font-weight: 700;
}

label {
    font-size: 18px;
    font-weight: 700;
}

section .form-principal {
    background: rgba(40, 42, 54, 0.5);
    width: 100%;
    height: 100%;
    max-height: 1000px;
    border-radius: .8rem;
    display: flex;
    align-items: center;
    flex-direction: column;
    border-top: 5px solid #28a745;
}

.form-principal form {
    width: 80%;
    height: 100%;
}

section .form-principal p {
    padding: 1.2rem;
    width: 80%;
}

.trigger {
    font-size: 1.3em;
    padding: 15px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    margin: 20px 0;
    font-weight: bold;
    border: 1px solid #cccccc;
    text-align: center;
}

    .trigger.warning {
        margin-top: 3rem;
        color: var(--color-green);
        border-color: var(--color-green);
    }

    .trigger.danger {
        margin-top: 3rem;
        color: #FFF;
        border-color: var(--color-red);
    }

.input-group input {
    width: 80% !important;
    padding: 10px;
    outline: 0;
}


button {
    width: 100%;
    border: 0;
    margin-top: 1rem;
    padding: 8px 10px;
    font-weight: bold;
    background: var(--yellow);
    border-radius: .3rem;
    cursor: pointer;
    transition: all .5s ease-in-out;
}

.btnwarning {
    width: 100%;
    border: 0;
    margin-top: 1rem;
    padding: 8px 10px;
    font-weight: bold;
    background: var(--yellow);
    border-radius: .3rem;
    cursor: pointer;
    transition: all .5s ease-in-out;
}

    .btnwarning:hover, a:hover {
        background: var(--color-green);
        color: #FFFF;
        transform: scale(1.01);
    }



#actions {
    margin-top: 1rem;
    margin-bottom: 3rem;
    display: flex;
    justify-content: space-between;
}

button:hover, a:hover {
    background: var(--color-green);
    color: #FFFF;
    transform: scale(1.01);
}


.input:focus {
    margin-left: 3px solid var(--color-dark);
}

.page {
    background: #34495E;
    padding: 10px;
    border-top-right-radius: .5rem;
    border-left: 2px solid var(--color-green);
}

.new-cadastro {
    background: rgba(40, 42, 54,1.5);
    padding: 5px;
    color: #FFF;
    font-weight: 600;
    margin-bottom: 5px;
    border: 1px solid rgba(40, 42, 54,0.4);
    transition: all 500ms ease;
    box-shadow: 2px 2px 2px 2px rgba(40, 42, 54, 0.1);
    height: 80%;
}


.letra-form {
    margin: 2rem;
    color: var(--color-yellow);
    font-size: 24px;
    font-weight: 600;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
}

.card-payment {
    margin-top: 2rem !important;
    width: 80%;
    background: #34495E;
    font-family: Arial, Helvetica, sans-serif;
    padding: 15px;
    border-radius: .2rem;
    border-top-right-radius: .6rem;
    border-bottom-right-radius: .6rem;
    border-left: 4px solid var(--color-green);
}

.banco {
    color: var(--color-yellow);
    font-weight: 600;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 24px;
}

.line-informacoes {
    width: 50%;
    font-family: Arial, Helvetica, sans-serif;
}


.number {
    color: var(--color-yellow);
}

.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    /* box-shadow: 2px 2px 3px #999; */
    z-index: 100;
}

.float-telegram {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    left: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    z-index: 100
}

.card-payment-anuncio {
    margin-top: 2rem !important;
    background: rgba(114, 116, 129, 0.4);
    color: #25d366;
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    padding: 15px;
}

.float:hover {
    transform: scale(1.05);
}
