@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,300;0,400;0,500;0,600;1,400&display=swap');

* {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
}

/* LOGIN */
.card {
    min-width: 300px;
}

a {
    text-decoration: none;
}

body {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    background: url('https://img.freepik.com/premium-photo/gold-bar-with-stocks-graph-representing-financial-investment-gold-stock-market-wealth-generative-ai_90099-8173.jpg') no-repeat center center fixed;
    /* Set background image */
    background-size: cover;
    /* Ensure the background covers the entire viewport */
    height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

p {
    margin: 0;
}

.alert {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    border-radius: 0;
}

.alert button.close {
    position: absolute;
    right: 10px;
}


.card {
    border-radius: 7px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.card-title {
    color: #333;
    border-bottom: 1px solid #bdbdbd;
    padding-bottom: 20px;
    margin: 0px -17px 20px -17px;
}

.btn-primary {
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    padding: 7px 15px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
}

