@import url('https://fonts.googleapis.com/css?family=Raleway:400,700');

body {
  min-height: 100vh;
  font-family: 'Raleway', sans-serif;
}

/* Custom styles to prevent Bootstrap conflicts */
.custom-container {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.custom-top, .custom-bottom {
  &:before, &:after {
    content: '';
    display: block;
    position: absolute;
    width: 200vmax;
    height: 200vmax;
    top: 50%;
    left: 50%;
    margin-top: -100vmax;
    margin-left: 200px;
    transform-origin: -250px 50%;
    transition: all 0.5s cubic-bezier(0.445, 0.05, 0, 1);
    z-index: 10;
    opacity: 0.65;
  }
}

.custom-top {
  &:before { transform: rotate(45deg); background: #e46569; }
  &:after { transform: rotate(135deg); background: #ecaf81; }
}

.custom-bottom {
  &:before { transform: rotate(-45deg); background: #60b8d4; }
  &:after { transform: rotate(-135deg); background: #3745b5; }
}

.custom-center {
  position: absolute;
  width: 400px;
  height: 400px;
  top: 50%;
  left: 50%;
  margin-left: -250px;
  margin-top: -200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  opacity: 1;
  color: #333;
  background: white; /* Added background to prevent Bootstrap from affecting visibility */
 /* border-radius: 10px; /* Optional: For a modern touch */
 /* box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); */
}

.custom-center input {
  width: 100%;
  padding: 15px;
  margin: 5px;
  border-radius: 5px; /* Adjusted for Bootstrap consistency */
  border: 1px solid #ccc;
  font-family: inherit;
}

/* Ensure Bootstrap spacing utilities don't override our custom styles */
.custom-container .custom-center input {
  margin-bottom: 10px !important;
}
