/**
 * Internal Office Panel – layout and global styles (no build step)
 * All styles moved from inline/internal to this single file.
 */

/* -----------------------------------------------------------------------------
   Base & layout
   ----------------------------------------------------------------------------- */
body#app {
  background-color: #f1f5f9;
  font-family: system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  margin: 0;
}

#app-main {
  display: flex;
  min-height: 100vh;
}

/* -----------------------------------------------------------------------------
   Top header
   ----------------------------------------------------------------------------- */
body#app > header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  height: 3.5rem;
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  padding: 0 1rem;
}

#sidebar-toggle {
  display: none;
  padding: 0.5rem;
  border-radius: 0.5rem;
  color: #475569;
  background: 0;
  border: 0;
  cursor: pointer;
}

#sidebar-toggle:hover {
  background: #f1f5f9;
}

@media (min-width: 768px) {
  #sidebar-toggle {
    display: block;
  }
}

body#app > header a[href*="dashboard"] {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 0.5rem;
  text-decoration: none;
}

@media (min-width: 768px) {
  body#app > header a[href*="dashboard"] {
    margin-left: 0;
  }
}

body#app > header a[href*="dashboard"] img {
  height: 2rem;
}

body#app > header .flex-1 {
  flex: 1 1 0%;
}

body#app > header > div:last-child {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #475569;
  font-size: 0.875rem;
}

body#app > header .hidden.sm\:inline {
  display: none;
}

@media (min-width: 640px) {
  body#app > header .hidden.sm\:inline {
    display: inline;
  }
}

body#app > header img[class*="rounded-full"] {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  object-fit: cover;
}

body#app > header a[href*="logout"] {
  color: #475569;
  font-weight: 500;
}

body#app > header a[href*="logout"]:hover {
  color: #dc2626;
}

/* -----------------------------------------------------------------------------
   Sidebar
   ----------------------------------------------------------------------------- */
#sidebar {
  display: none;
  flex-direction: column;
  width: 16rem;
  flex-shrink: 0;
  background: #1e293b;
  color: #e2e8f0;
  border-right: 1px solid #334155;
  overflow-y: auto;
}

@media (min-width: 768px) {
  #sidebar {
    display: flex;
  }
}

#sidebar nav {
  padding: 0.75rem;
}

#sidebar a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  color: inherit;
  text-decoration: none;
}

#sidebar a:hover {
  background: #334155;
}

#sidebar a.bg-primary-600 {
  background: #7468bd;
  color: #fff;
}

#sidebar a.bg-red-700 {
  background: #b91c1c;
  color: #fff;
}

#sidebar a.bg-red-700:hover {
  background: #dc2626;
}

@media (max-width: 767px) {
  #sidebar.mobile-open {
    display: flex !important;
    position: fixed;
    top: 3.5rem;
    left: 0;
    bottom: 0;
    z-index: 40;
    width: 16rem;
  }
}

/* -----------------------------------------------------------------------------
   Content area
   ----------------------------------------------------------------------------- */
#app-main .content {
  flex: 1 1 0%;
  overflow: auto;
  padding: 1rem;
  background-color: #f1f5f9;
  min-width: 0;
}

@media (min-width: 768px) {
  #app-main .content {
    padding: 1.5rem;
  }
}

#app-main .content .card-body .table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

#app-main .content .table {
  margin-bottom: 0;
}

#app-main .content .table thead th {
  background-color: #f1f5f9;
  font-weight: 600;
  white-space: nowrap;
}

/* -----------------------------------------------------------------------------
   Toast notifications
   ----------------------------------------------------------------------------- */
#toast-container {
  position: fixed;
  top: 4rem;
  right: 1rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 24rem;
  width: 100%;
  pointer-events: none;
}

#toast-container .toast-item {
  pointer-events: auto;
}

.toast-enter {
  animation: toast-enter 0.35s cubic-bezier(0.21, 0.47, 0.32, 1.1) forwards;
}

.toast-exit {
  animation: toast-exit 0.4s ease-out forwards;
}

@keyframes toast-enter {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes toast-exit {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(100%);
  }
}

/* Toast content (used by showToast) */
.toast-item.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.toast-item.rounded-xl {
  border-radius: 0.75rem;
}

.toast-item.border {
  border-width: 1px;
}

.toast-item.p-4 {
  padding: 1rem;
}

.toast-item .flex {
  display: flex;
}

.toast-item .items-start {
  align-items: flex-start;
}

.toast-item .gap-3 {
  gap: 0.75rem;
}

.toast-item .flex-1 {
  flex: 1 1 0%;
}

.toast-item .text-sm {
  font-size: 0.875rem;
}

.toast-item .font-medium {
  font-weight: 500;
}

.toast-item .flex-shrink-0 {
  flex-shrink: 0;
}

.toast-item .w-8 {
  width: 2rem;
}

.toast-item .h-8 {
  height: 2rem;
}

.toast-item .rounded-lg {
  border-radius: 0.5rem;
}

.toast-item .opacity-70 {
  opacity: 0.7;
}

.toast-item .toast-close {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1.125rem;
  line-height: 1;
}

.bg-emerald-50 {
  background-color: #ecfdf5;
  border-color: #a7f3d0;
}

.text-emerald-800 {
  color: #065f46;
}

.bg-red-50 {
  background-color: #fef2f2;
  border-color: #fecaca;
}

.text-red-800 {
  color: #991b1b;
}

.bg-sky-50 {
  background-color: #f0f9ff;
  border-color: #bae6fd;
}

.text-sky-800 {
  color: #075985;
}

/* -----------------------------------------------------------------------------
   CKEditor
   ----------------------------------------------------------------------------- */
.ck-editor__editable {
  min-height: 250px;
}

/* -----------------------------------------------------------------------------
   User status toggle (admin/user)
   ----------------------------------------------------------------------------- */
.user-status-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 22px;
}

.user-status-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.user-status-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #cbd5e1;
  border-radius: 22px;
  transition: 0.3s;
}

.user-status-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 2px;
  bottom: 2px;
  background-color: #fff;
  border-radius: 50%;
  transition: 0.3s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.user-status-switch input:checked + .user-status-slider {
  background-color: #22c55e;
}

.user-status-switch input:checked + .user-status-slider:before {
  transform: translateX(22px);
}

.user-status-switch input:disabled + .user-status-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

/* -----------------------------------------------------------------------------
   Buttons – consistent UI for all actions
   ----------------------------------------------------------------------------- */
.btn,
a.btn,
button.btn,
input[type="submit"].btn,
input[type="button"].btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  border: 1px solid transparent;
  border-radius: 0.5rem;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

a.btn {
  color: inherit;
}

.btn:focus,
a.btn:focus,
button.btn:focus {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(116, 104, 189, 0.35);
}

.btn:disabled,
.btn.disabled {
  opacity: 0.65;
  cursor: not-allowed;
  pointer-events: none;
}

/* Primary – main actions */
.btn-primary,
a.btn-primary {
  color: #fff;
  background-color: #7468bd;
  border-color: #7468bd;
}

.btn-primary:hover,
a.btn-primary:hover {
  color: #fff;
  background-color: #5f52a8;
  border-color: #5f52a8;
}

.btn-primary:focus {
  box-shadow: 0 0 0 3px rgba(116, 104, 189, 0.35);
}

/* Secondary – cancel, back, neutral */
.btn-secondary,
a.btn-secondary {
  color: #475569;
  background-color: #fff;
  border-color: #cbd5e1;
}

.btn-secondary:hover,
a.btn-secondary:hover {
  color: #334155;
  background-color: #f1f5f9;
  border-color: #94a3b8;
}

/* Success – approve, confirm */
.btn-success,
a.btn-success {
  color: #fff;
  background-color: #2fbfa0;
  border-color: #2fbfa0;
}

.btn-success:hover,
a.btn-success:hover {
  color: #fff;
  background-color: #28a88c;
  border-color: #28a88c;
}

/* Danger – delete, reject */
.btn-danger,
a.btn-danger {
  color: #fff;
  background-color: #dc2626;
  border-color: #dc2626;
}

.btn-danger:hover,
a.btn-danger:hover {
  color: #fff;
  background-color: #b91c1c;
  border-color: #b91c1c;
}

a.btn-danger:visited {
  color: #fff;
}

/* Outline variants */
.btn-outline-primary,
a.btn-outline-primary {
  color: #7468bd;
  background-color: transparent;
  border-color: #7468bd;
}

.btn-outline-primary:hover,
a.btn-outline-primary:hover {
  color: #fff;
  background-color: #7468bd;
  border-color: #7468bd;
}

.btn-outline-secondary,
a.btn-outline-secondary {
  color: #64748b;
  background-color: transparent;
  border-color: #cbd5e1;
}

.btn-outline-secondary:hover,
a.btn-outline-secondary:hover {
  color: #334155;
  background-color: #f1f5f9;
  border-color: #94a3b8;
}

.btn-outline-danger,
a.btn-outline-danger {
  color: #dc2626;
  background-color: transparent;
  border-color: #dc2626;
}

.btn-outline-danger:hover,
a.btn-outline-danger:hover {
  color: #fff;
  background-color: #dc2626;
  border-color: #dc2626;
}

.btn-outline-success,
a.btn-outline-success {
  color: #2fbfa0;
  background-color: transparent;
  border-color: #2fbfa0;
}

.btn-outline-success:hover,
a.btn-outline-success:hover {
  color: #fff;
  background-color: #2fbfa0;
  border-color: #2fbfa0;
}

/* Sizes */
.btn-sm,
a.btn-sm {
  padding: 0.35rem 0.75rem;
  font-size: 0.8125rem;
  border-radius: 0.375rem;
}

.btn-lg,
a.btn-lg {
  padding: 0.65rem 1.25rem;
  font-size: 1rem;
  border-radius: 0.5rem;
}

/* Rounded (pill-style) */
.btn-rounded,
a.btn-rounded {
  border-radius: 2rem;
}

/* Block – full width */
.btn-block,
a.btn-block {
  display: flex;
  width: 100%;
}

/* Link style – no background */
.btn-link,
a.btn-link {
  color: #7468bd;
  background-color: transparent;
  border-color: transparent;
}

.btn-link:hover,
a.btn-link:hover {
  color: #5f52a8;
  text-decoration: underline;
  background-color: transparent;
  border-color: transparent;
}

/* Default (modal close, etc.) – alias for secondary */
.btn-default,
a.btn-default {
  color: #475569;
  background-color: #fff;
  border-color: #cbd5e1;
}

.btn-default:hover,
a.btn-default:hover {
  color: #334155;
  background-color: #f1f5f9;
  border-color: #94a3b8;
}

/* Inline button groups spacing */
.btn + .btn,
.btn + a.btn,
a.btn + .btn,
a.btn + a.btn {
  margin-left: 0.5rem;
}

.mx-1 {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

/* DataTables / table action column – all actions as buttons */
#app-main .content .table td .btn,
#app-main .content .card-body .table td .btn {
  vertical-align: middle;
}

#app-main .content .table td .btn + .btn,
#app-main .content .card-body .table td .btn + .btn {
  margin-left: 0.5rem;
}

/* -----------------------------------------------------------------------------
   Buttons & links (legacy)
   ----------------------------------------------------------------------------- */

/* -----------------------------------------------------------------------------
   Active users custom switch
   ----------------------------------------------------------------------------- */
.custom-switch-input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.custom-switch-input:checked ~ .custom-switch-indicator:before {
  left: calc(1rem + 1px);
}

.custom-switch-input:checked ~ .custom-switch-description {
  color: #3d4e67;
}

.custom-switch-input:checked ~ .custom-switch-indicator {
  background: #007bff;
}

.custom-switch-indicator {
  display: inline-block;
  height: 1.25rem;
  width: 2.25rem;
  background: #e0e8f3;
  border-radius: 50px;
  position: relative;
  vertical-align: bottom;
  border: 1px solid #e0e8f3;
  transition: 0.3s border-color, 0.3s background-color;
}

.custom-switch-indicator:before {
  content: '';
  position: absolute;
  height: calc(1.25rem - 4px);
  width: calc(1.25rem - 4px);
  top: 1px;
  left: 1px;
  background: #fff;
  border-radius: 50%;
  transition: 0.3s left;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.4);
}

.custom-switch-input:checked ~ .custom-switch-indicator:before {
  left: calc(1rem + 1px);
}

/* -----------------------------------------------------------------------------
   Chosen / Select2 overrides
   ----------------------------------------------------------------------------- */
.chosen-container {
  width: 100% !important;
}

.chosen-container-multi .chosen-choices li.search-field input[type="text"] {
  font-family: 'Nunito', system-ui, sans-serif;
  height: 35px;
}

.chosen-container-multi .chosen-choices li.search-choice {
  margin: 8px 5px 8px 0;
}

.select2-container {
  width: 100% !important;
}

.chosen-container-multi .chosen-choices {
  border: 1px solid #e0e8f3;
  background-image: none;
  border-radius: 3px;
  overflow-y: scroll;
  max-height: 65px;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}

#leave_div,
#type_div,
#from_div,
#to_div {
  display: none;
}

/* -----------------------------------------------------------------------------
   Dashboard
   ----------------------------------------------------------------------------- */
/* Dashboard wrapper */
.dashboard-wrap {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem 1rem 1.5rem;
}
@media (min-width: 640px) {
  .dashboard-wrap {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

/* Stat cards grid (4 cols on large, 2 on medium, 1 on small) */
.dashboard-stat-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) {
  .dashboard-stat-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .dashboard-stat-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Single stat card */
.dashboard-stat-card {
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  padding: 1.25rem;
}
.dashboard-stat-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.dashboard-stat-value {
  margin-top: 0.25rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
}
.dashboard-stat-value--success { color: #059669; }
.dashboard-stat-value--warning { color: #d97706; }
.dashboard-stat-value--info { color: #0284c7; }
.dashboard-stat-value--violet { color: #7c3aed; }
.dashboard-stat-value--muted { color: #64748b; }

/* 3-column stat row */
.dashboard-stat-cards-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) {
  .dashboard-stat-cards-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .dashboard-stat-cards-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Two-column panels row */
.dashboard-panels {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .dashboard-panels {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Panel (white card with header) */
.dashboard-panel {
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  overflow: hidden;
}
.dashboard-panel-header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dashboard-panel-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}
.dashboard-panel-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #0284c7;
}
.dashboard-panel-link:hover {
  color: #0369a1;
}

/* List inside panel */
.dashboard-list-item {
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #f1f5f9;
}
.dashboard-list-item:last-child {
  border-bottom: none;
}
.dashboard-list-item-name {
  font-weight: 500;
  color: #1e293b;
}
.dashboard-list-item-meta {
  font-size: 0.875rem;
  color: #64748b;
}
.dashboard-empty {
  padding: 1.5rem 1.25rem;
  text-align: center;
  color: #64748b;
}

/* Payroll link under stat */
.dashboard-payroll-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #0284c7;
}
.dashboard-payroll-link:hover {
  color: #0369a1;
}

.btn-circle {
  border-radius: 50%;
  font-size: 50px;
  height: 100px;
  width: 100px;
}

.btn-success.btn-circle i {
  color: #fff;
}

.btn-default {
  background-color: #fff;
}

.btn-default.btn-circle i {
  color: #2fbfa0;
}

.success {
  background-color: #2fbfa0;
  border: 1px solid #2fbfa0;
  color: rgba(255, 255, 255, 0.85);
}

/* -----------------------------------------------------------------------------
   Endpoint / project
   ----------------------------------------------------------------------------- */
.col-2.center-btn {
  vertical-align: middle;
  align-self: center;
  text-align: center;
}

.m-bottom {
  margin-bottom: 10px;
}

#projectid {
  font-size: 50px;
}

.ryt-btn {
  text-align: right;
  text-align: -webkit-right;
}

#spanId {
  background-color: #f5f5f5;
}

#postId {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #d10d0d;
  background: none;
}

#getId {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #0dd119;
  background: none;
}

#putId {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #3800e4;
  background: none;
}

.dataTables_empty {
  display: flex;
  justify-content: center;
  font-size: 30px;
  font-weight: initial;
}

button#lock {
  margin-top: 10px;
}

/* -----------------------------------------------------------------------------
   Calendar views
   ----------------------------------------------------------------------------- */
body .fc-bg,
body .fc-bgevent-skeleton,
body .fc-highlight-skeleton,
body .fc-helper-skeleton {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

/* -----------------------------------------------------------------------------
   Login / standalone pages body
   ----------------------------------------------------------------------------- */
body.content-menu {
  font-family: system-ui, -apple-system, sans-serif;
}

/* Google login redirect page */
body .form-container {
  width: 350px;
  height: 430px;
  background-color: #fff;
}

/* Google login page (standalone) */
body.google-login-page {
  margin: 0;
  padding: 0;
}

body.google-login-page * {
  box-sizing: border-box;
}

body.google-login-page .container {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

body.google-login-page .form-container {
  width: 350px;
  height: 430px;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.35) 0 5px 15px;
  border-radius: 10px;
  padding: 20px 30px;
}

body.google-login-page .title {
  text-align: center;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  margin: 10px 0 30px 0;
  font-size: 28px;
  font-weight: 800;
}

body.google-login-page .form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 15px;
}

body.google-login-page .input {
  border-radius: 20px;
  border: 1px solid #c0c0c0;
  outline: 0 !important;
  padding: 12px 15px;
}

body.google-login-page .input:focus {
  box-shadow: 0 0 7px gray;
}

body.google-login-page .page-link {
  text-decoration: underline;
  margin: 0;
  text-align: end;
  color: #747474;
  text-decoration-color: #747474;
}

body.google-login-page .page-link-label {
  cursor: pointer;
  font-size: 9px;
  font-weight: 700;
}

body.google-login-page .page-link-label:hover {
  color: #000;
}

body.google-login-page .form-btn {
  padding: 10px 15px;
  border-radius: 20px;
  border: 0 !important;
  outline: 0 !important;
  background: teal;
  color: white;
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.24) 0 3px 8px;
}

body.google-login-page .form-btn:active {
  box-shadow: 0 0 5px black;
}

body.google-login-page .sign-up-label {
  text-align: center;
  font-size: 10px;
  color: #747474;
}

body.google-login-page .sign-up-link {
  margin-left: 3px;
  font-size: 11px;
  text-decoration: underline;
  text-decoration-color: teal;
  color: teal;
  cursor: pointer;
  font-weight: 800;
}

body.google-login-page .buttons-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-top: 20px;
  gap: 15px;
}

body.google-login-page .google-login-button {
  border-radius: 20px;
  padding: 10px 15px;
  box-shadow: rgba(0, 0, 0, 0.16) 0 10px 36px 0, rgba(0, 0, 0, 0.06) 0 0 0 1px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 11px;
  gap: 5px;
  border: 2px solid black;
  transition: 0.3s ease all;
  background-color: black;
  color: white;
  text-decoration: none;
}

body.google-login-page .google-login-button:hover {
  background-color: white;
  color: black;
}
.pt-50
{
  padding-top: 50px;
}

