/* 
    Document   : stylesheet
    Created on : 2012-06-13, 14:10:25
    Author     : Waldemar Kłaczyński
    Description:
        Purpose of the stylesheet follows.
*/
.credit-card {
    background: linear-gradient(to right, #4b79a1, #283e51);
    color: #fff;
    border-radius: 10px;
    width: 350px;
    height: 200px;
    padding: 20px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bank-logo {
    font-size: 18px;
    font-weight: bold;
}

.card-type {
    font-size: 12px;
    text-transform: uppercase;
}

.card-number {
    font-size: 22px;
    letter-spacing: 2px;
    margin: 20px 0;
}

.card-details {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.card-holder {
    text-transform: uppercase;
}

.expiry-date {
    font-weight: bold;
}

.chip {
    position: absolute;
    width: 40px;
    height: 25px;
    background-color: #d4d4d4;
    border-radius: 3px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    top: 20px;
    left: 20px;
}


