* {
    box-sizing: border-box;
}

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;
  height: 100vh;
}

/* Layout */

.top-navbar {
    background: rgb(27 51 82);
    color: white;
}

.bottom-footer {
    background: rgb(27 51 82);
    color: white;
}

    .top-navbar a, .bottom-footer a {
        text-decoration: none;
        color: white;
    }

/* Common Features */
.grey-card {
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.section-title {
    font-size: 35px;
    font-weight: 800;
    font-family: 'Nunito', sans-serif;
}

.section-subtitle {
    font-size: 25px;
    font-weight: 800;
    font-family: 'Nunito', sans-serif;
}

.bordered-rounded-box {
    border: 1px solid black;
    border-radius: 8px;
    padding: 20px;
}

/* Landing Page */

.phone {
    width: 420px;
}
.phone img {
    max-width: 100%;
}

.corner-step-number {
    position: absolute;
    z-index: 1;
    left: -12px;
    top: -12px;
    width: 24px;
    height: 24px;
    border-radius: 12px;
    color: white;
}

.rounded-3 {
    border-radius: 8px !important;
}