﻿.step-css {
    width: 50%;
    height: auto;
}



.login-image {
    width: 40%;
    height: 40%;
    object-fit: cover;
    display: block;
    margin: 10px auto;
}

.input-field {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

    .input-field:focus {
        border-color: #007bff;
        outline: none;
        box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
    }

.body {
    background-color: #d4eeeb;
}

.bitcoin {
    width: 45%;
    object-fit: cover;
    display: block;
    margin: 5px auto;
    width: 50px;
}

/*for the thumbnail on the index page
*/ .thumbnail {
    width: 150px;
    cursor: pointer;
    transition: transform 0.2s;
}

    .thumbnail:hover {
        transform: scale(1.05);
    }

.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
}

.modal-content {
    display: block;
    margin: 5% auto;
    max-width: 90%;
    max-height: 80vh;
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}


/* Responsive adjustments for dashboard page */
/* dashboard.css */

body {
    background-color: #0b0c10;
    color: #c5c6c7;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

h2, h4 {
    color: #66fcf1;
}

.card {
    background-color: #1f2833;
    border: none;
    border-radius: 8px;
}

.btn-primary {
    background-color: #45a29e;
    border: none;
}

    .btn-primary:hover {
        background-color: #66fcf1;
        color: #0b0c10;
    }

.table {
    background-color: #1f2833;
    color: #c5c6c7;
}

.table-dark {
    background-color: #45a29e;
    color: #0b0c10;
}

.alert-success {
    background-color: #28a745;
    color: white;
    border-radius: 5px;
}

/* end Responsive adjustments for dashboard page */

.rounded-box {
    border: 2px solid #4CAF50; /* Green border */
    border-radius: 15px; /* Rounded corners */
    padding: 20px; /* Space inside the box */
    /*width: 300px;*/ /* Optional width */
    background-color: #f9f9f9; /* Light background */
}
