﻿:root {
    --green: #235b09;
    --gold: #d1af78;
    --black: #000000;
    --line: #e7e7e7;
}

body {
    margin: 0;
    font-family: "Roboto", sans-serif;
    background: #fff;
    color: var(--black);
}

.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.card {
    max-width: 520px;
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 14px 32px rgba(0,0,0,.08);
    background: #fff;
    position: relative;
    overflow: hidden;
}

    .card::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        background: var(--gold);
    }

.header {
    padding: 28px 24px 18px;
    text-align: center;
}

.logo {
    width: 200px;
    height: 100px;
    border-radius: 15px;
    border: 1px solid rgba(209,175,120,.60);
    background: linear-gradient(180deg, #fff, #fbfaf7);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 10px 22px rgba(0,0,0,.06);
    margin: 0 auto 20px;
}

    .logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        padding: 5px;
    }

.title {
    font-size: 18px;
    font-weight: 900;
    color: var(--green);
    margin: 0 0 8px;
}

.text {
    font-size: 14px;
    color: rgba(0,0,0,.75);
    line-height: 1.55;
    padding: 0 2%;
}

.actions {
    padding: 0 24px 24px 24px;
    display: flex;
    justify-content: center;
}

.btn {
    padding: 12px 18px;
    border-radius: 14px;
    border: 1px solid rgba(209,175,120,.7);
    background: rgba(209,175,120,.14);
    font-weight: 900;
    cursor: pointer;
}