/*
|--------------------------------------------------------------------------
| VALORABANK
| CURRENT ACCOUNT PAGE CSS
|--------------------------------------------------------------------------
*/

.account-hero{

    min-height:55vh;

    display:flex;
    align-items:center;

    background:
    linear-gradient(
        rgba(8,31,77,.92),
        rgba(8,31,77,.78)
    ),
    url('../images/banking/account-hero.jpg');

    background-size:cover;
    background-position:center;

    color:#fff;

}

.account-hero h1{

    font-size:3.2rem;
    font-weight:800;

}

.account-section{

    padding:100px 0;

    background:#f8fafc;

}

/* ==============================
ACCOUNT CARD
============================== */

.account-card{

    background:#fff;

    border-radius:30px;

    padding:40px;

    box-shadow:0 25px 80px rgba(0,0,0,.08);

    position:relative;

    overflow:hidden;

}

.account-card::before{

    content:"";

    position:absolute;

    top:-50px;
    right:-50px;

    width:200px;
    height:200px;

    background:linear-gradient(135deg,#FFD447,#103A8C);

    opacity:.2;

    border-radius:50%;

}

.account-title{

    font-size:24px;

    font-weight:800;

    color:#081F4D;

}

/* ==============================
BALANCE
============================== */

.balance-box{

    margin-top:20px;

    padding:25px;

    border-radius:20px;

    background:linear-gradient(135deg,#081F4D,#103A8C);

    color:#fff;

}

.balance-label{

    font-size:14px;

    opacity:.8;

}

.balance-amount{

    font-size:32px;

    font-weight:800;

}

/* ==============================
ACTIONS
============================== */

.account-actions{

    display:flex;

    gap:15px;

    margin-top:30px;

    flex-wrap:wrap;

}

.action-btn{

    flex:1;

    padding:12px;

    border-radius:15px;

    border:none;

    font-weight:700;

    cursor:pointer;

    transition:.3s;

}

.action-send{

    background:#103A8C;

    color:#fff;

}

.action-add{

    background:#FFD447;

    color:#081F4D;

}

.action-history{

    background:#e5e7eb;

    color:#081F4D;

}

/* ==============================
TRANSACTIONS
============================== */

.transaction{

    display:flex;

    justify-content:space-between;

    padding:15px 0;

    border-bottom:1px solid #eee;

}

.transaction:last-child{

    border-bottom:none;

}

.transaction-name{

    font-weight:600;

    color:#081F4D;

}

.transaction-amount{

    font-weight:700;

}

/* ==============================
RESPONSIVE
============================== */

@media(max-width:768px){

    .account-hero h1{

        font-size:2.2rem;

    }

}