
.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background-image: url('https://images.pexels.com/photos/259915/pexels-photo-259915.jpeg'); *//* Replace with your image path */
    background-size: cover;
    filter: blur(5px);
}

.login-container {
    position: relative;
    width: 100%;
    height: 80%;
}

.login-box {
    position: relative;
    z-index: 1;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
    margin: 0 auto; /* Center horizontally */
}
.login-box .btn{
    padding: 20px;
    font-size: 18px;
}

#pinInput {
    font-size: 18px;
    padding: 10px;
    margin-bottom: 10px;
    width: calc(100% - 0px); /* Account for padding */
	text-align:center;
}

.right-col {
  background: linear-gradient(0deg,rgba(0, 0, 0, 0.76),rgba(51, 51, 51, 0.32)),url(../img/sovereign.png); 
  text-align: center;
  background-size: cover;
  background-position: center;
}

.keypad, .extra-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 12px;
}

button {
    font-size: 18px;
    padding: 25px;
    width: 100%;
    height: 100%;
}

button:hover {
    background-color: #ddd;
}
