﻿.grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Two columns, equal width */
  gap: 20px; /* Space between the grid items */
}

.grid-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* Keep text and buttons aligned at the top */
  text-align: center; /* Center the text in the container */
}

.btncancel {
    border-radius: 30px;
    padding-left: 20px;
    padding-right: 20px;
    font-weight: bold;
    border-color: #001d6c;
    color: #001d6c;
}

.colorbanner {
    background: #001d6c;
}

.paddingmain {
    padding-left:0px !important;
    padding-right:0px !important
}

.alignctn {
    display: flex;
    justify-content: center;
}