/*
 * Globals
 */


/* Custom default button */
.btn-light,
.btn-light:hover,
.btn-light:focus {
  color: #333;
  text-shadow: none; /* Prevent inheritance from `body` */
}


/*
 * Base structure
 */

body {
  text-shadow: 0 .05rem .1rem rgba(0, 0, 0, .5);
  box-shadow: inset 0 0 5rem rgba(0, 0, 0, .5);
  background-image: url(assets/StickerheadsImage.png);
}

.cover-container {
  
  max-width: 42em;
}


/*
 * Header
 */

.nav-masthead .nav-link {
  color: rgba(255, 255, 255, .5);
  border-bottom: .25rem solid transparent;
}

.nav-masthead .nav-link:hover,
.nav-masthead .nav-link:focus {
  border-bottom-color: rgba(255, 255, 255, .25);
}

.nav-masthead .nav-link + .nav-link {
  margin-left: 1rem;
}

.nav-masthead .active {
  color: #fff;
  border-bottom-color: #fff;
}

.form-input {
            padding: 0.75rem 1rem; /* More padding for input */
            border: 1px solid #d1d5db; /* Light gray border */
            border-radius: 0.5rem; /* Rounded input corners */
            
            font-size: 1rem;
            color: #374151; /* Darker text in input */
        }
        .form-input:focus {
            outline: none;
            border-color: #6366f1; /* Indigo border on focus */
            box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2); /* Soft shadow on focus */
        }
        .form-button {
            background-image: linear-gradient(to right, #6366f1, #8b5cf6); /* Gradient background */
            color: #ffffff; /* White text */
            padding: 0.75rem 1.5rem; /* More padding */
            border-radius: 0.5rem; /* Rounded button corners */
            font-weight: 600; /* Semi-bold */
            font-size: 1.125rem; /* Larger font size */
            cursor: pointer;
            transition: all 0.2s ease-in-out; /* Smooth transition for hover effects */
            border: none; /* No default border */
            
        }
        .form-button:hover {
            opacity: 0.9; /* Slight opacity change on hover */
            transform: translateY(-2px); /* Slight lift effect */
            box-shadow: 0 4px 6px -1px rgba(99, 102, 241, 0.3), 0 2px 4px -1px rgba(99, 102, 241, 0.1);
        }
