* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #eef3f9 0%, #dfe9f6 100%);
    color: #333;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px;
}

.card {
    width: 540px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 18px 45px rgba(0,0,0,.15);
    padding: 45px;
    text-align: center;
    animation: fadeIn .45s ease;
}

.logo {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: #eef5ff;
    color: #0d6efd;
    font-size: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #d5e6ff;
}

h1 {
    color: #0d6efd;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
}

h2 {
    color: #666;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 30px;
}

.descricao {
    color: #666;
    line-height: 26px;
    margin-bottom: 35px;
}

.informacoes {
    background: #f8f9fb;
    border: 1px solid #e5e8ef;
    border-radius: 10px;
    padding: 22px;
    margin-bottom: 35px;
}

.linha {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e5e5e5;
}

.linha:last-child {
    border-bottom: none;
}

.linha span {
    color: #777;
    font-size: 15px;
}

.linha strong {
    color: #222;
    font-size: 15px;
    font-weight: 600;
    text-align: right;
}

form {
    width: 100%;
}

button {
    width: 100%;
    height: 56px;
    border: none;
    border-radius: 8px;
    background: #0d6efd;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s ease;
}

button:hover {
    background: #0b5ed7;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(13,110,253,.30);
}

button:active {
    transform: translateY(0);
}

button:disabled {
    background: #9dbdfd;
    cursor: not-allowed;
    box-shadow: none;
}

#status {
    margin-top: 25px;
    min-height: 24px;
    font-size: 15px;
}

.sucesso {
    color: #198754;
    font-weight: 600;
}

.erro {
    color: #dc3545;
    font-weight: 600;
}

@keyframes fadeIn {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@media (max-width: 600px) {

    body {
        padding: 15px;
    }

    .card {
        width: 100%;
        padding: 30px;
    }

    .logo {
        width: 75px;
        height: 75px;
        font-size: 38px;
    }

    h1 {
        font-size: 26px;
    }

    h2 {
        font-size: 17px;
    }

    .linha {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .linha strong {
        text-align: left;
    }

}