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 {
  margin-bottom: 60px;
}

.mycars {
    font-family: 'Bungee Spice', sans-serif;
    font-size: 34px;
}

.textish {
    transition: transform 0.4s ease-in-out 0.05s, 0.4s ease-in-out 0.05s;
    color: white !important;
}

.textish:hover {
    transform: scale(1.02);
    color: red !important;
}



.login-box {
    max-width: 360px;
    margin: 80px auto;
    padding: 25px;
    border: 2px solid #D7E1EA;
    border-radius: 12px;
    background-color: #FFFFFF;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.login-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 700;
    border-bottom: 2px solid #D7E1EA;
    padding-bottom: 10px;
}

.login-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.login-group label {
    font-weight: 600;
    margin-bottom: 5px;
}

.login-group input {
    padding: 10px;
    font-size: 16px;
    border-radius: 6px;
    border: 1px solid #D7E1EA;
    outline: none;
}

.login-group input:focus {
    border-color: #4A90E2;
    box-shadow: 0 0 4px rgba(74,144,226,0.5);
}

.login-btn {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    font-size: 18px;
    font-weight: 700;
    color: white;
    background-color: #ff4d2e;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.login-btn:hover {
    background-color: #e63f22;
}

.login-btn:active {
    background-color: #c9341c;
}

