/* POPPINS FONT */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
}

html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    direction: rtl;
    text-align: right;
    font-family: "Open Sans", sans-serif;
    margin: 20px;
    background-color: #fafafa;
    margin-bottom: 60px;
    padding-bottom: 50px;
}

/* שינוי צבע הכפתור הראשי (Login button) */
.btn-primary {
    background-color: #21C37D !important; /* ירוק GetDriver */
    border-color: #21C37D !important;
}

    .btn-primary:hover {
        background-color: #0E9E5A !important;
        border-color: #0E9E5A !important;
    }