:root {
    --berry-red: #a63591;
}

.btn-primary {
    background-color: #a63591;
    border-color: #ccc2C2;
}

    .btn-primary:hover {
        background-color: #6b1753;
        border-color: #ccc2c2;
    }

a {
    color: var(--berry-red);
}

    a:hover {
        color: #b8050f;
    }



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-color: #f8f9fa;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

h1, h2, h3 {
    font-weight: 600;
}


.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

.success-icon {
    width: 80px;
    height: 80px;
    font-size: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    animation: popIn 0.5s ease-out forwards;
    transform: scale(0.7);
    opacity: 0;
}

@keyframes popIn {
    0% {
        transform: scale(0.7);
        opacity: 0;
    }

    60% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.navbar-nav .nav-link {
    font-weight: 500;
}

    .navbar-nav .nav-link:hover {
        color: #e30613;
    }
