.alert-message {
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translate(-50%,-150%);
    border-radius: 6px;
    padding: 10px 20px;
    width: 450px;
    text-align: center;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    background: #1FB6FF;
    transition: all .2s;
    transition-delay: .2s;
    transition-timing-function: ease-in-out;
    box-shadow: 0 1px 2px 0 rgba(31,45,61,.15);
    z-index: 999;
}

.contact-icon {
    color: #1E88E5;
    font-size: 20px;
    cursor: pointer;
  
}

button[disabled]{
  opacity: 0.5;
}

.alert-message span.close {
    display: inline-block;
    width: 18px;
    height: 18px;
    color: rgba(255,255,255,0.65);
    content: "\00d7";
    font-weight: bold;
    font-size: 23px;
    position: absolute;
    right: 5px;
    top: 3px;
    cursor: pointer;
}

.alert-message span.close.hover {
    color: white;
}

.alert-message.active   {
    transform: translate(-50%,0);
}

.alert-message.primary  {
    background-color: #1FB6FF;
}
.alert-message.positive {
    background-color: #13CE66;
}
.alert-message.negative {
    background-color: #cf4040;
}
.alert-message.warning  {
    background-color: #FFC82C;
}


.topbar {
    height: 150px;
    padding: 55px 0;
    background: #002855;
    text-align: center;
    z-index: 1;
}

.login-footer {

    bottom: 10px;
    font-size: 16px;
    width: 100%;
    text-align: center;
    color: #757575;
    display:grid;
    justify-content: center;
}



.container {
    position: relative;
    top: -10%;
}

.text-label {
    margin-left: 5px;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: bold;

}

.text-value {
    font-size: 15px;
}

.cartaoLogo img{
    margin-top: 40px;
}

.cartaoFields {
    margin-top: 100px;
    margin-left:105px;
    color:black;
}

.btn-success {
    background: #50ab50;
    color: white;
    border: transparent;
    padding: 7px;
    border-radius: 3px;
}
button {
    cursor:pointer
}

.btn-success:hover {
    background: #74c974;

}



.cartao{
    height: 260px;
    width: 421px;
    background-image: url("/resources/img/IPA_Cartão_2025.png");
    border-radius: 8px;
    background-size: cover;
}


#demo-modal {
    z-index: 99;
}
.modal {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(77, 77, 77, .7);
    transition: all .4s;
}

.modal:target {
    visibility: visible;
    opacity: 1;
}

.modal__content {
    border-radius: 4px;
    position: relative;
    width: 500px;
    max-width: 90%;
    background: #fff;
    padding: 1em 2em;
    top: -18%;
}

.modal__footer {
    text-align: right;
    a {
        color: #585858;
    }
    i {
        color: #d02d2c;
    }
}
.modal__close {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #585858;
    text-decoration: none;
}