﻿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;
  background-image: url("../images/NavyBack.PNG");
}


/* REGISTER */

    body {
      width: 100%;
      max-width: 100%;
      margin: 0px;
      padding: 0px;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: #000000;

      background-image: url('../images/NavyBack.png');
      background-size: contain;
      xbackground-repeat: no-repeat;
      background-position-y: bottom;
      height: 100vh;
    }

.card-container {
    width: 100%;
    margin: 0px;
    padding: 0px;
    xbackground-image: url('../images/square.png');
    max-width: 100%;
}

.card-container .card-main {
    background: #ffffff;
}

.card-main {
    width: 90%;
    box-sizing: border-box;
    background: #202025;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    text-align: center;
    place-self: center;
    margin: 1rem 0rem;
}

h1 {
    margin-top: 0;
    font-size: 24px;
    margin-bottom: 16px;
}

input {
    display: block;
    width: 100%;
    box-sizing: border-box;
    font-size: 16px;          /* 👈 stops iOS from auto-zooming */
    padding: 12px 14px;
    margin-bottom: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

button {
    width: 100%;
    box-sizing: border-box;
    font-size: 16px;          /* keep buttons readable too */
    padding: 12px 14px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    background: #333;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

button:active {
    opacity: 0.8;
}


.link-button {
    background: none;
    border: none;
    padding: 0;
    margin: 1.9rem 0rem 1rem 0rem;
    color: #007bff;        /* typical link colour */
    xtext-decoration: underline;
    cursor: pointer;
    font: inherit; 
    text-transform: none;
    letter-spacing:initial
}
.link-button:hover {
    text-decoration: none;
}

