.authentication-bg {
    background-image: url("/img/reg-bg.jpg");
}

.register-header {
    color: white;
    display: flex;
    font-size: 2rem;
    font-weight: bold;
    justify-content: center;
    align-items: center;
}

.register-select {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.register-option {
    background-color: rgba(74, 116, 37, 0.8);
}

.extraMenu {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 1s ease-out, opacity 1s ease-out;
}

.extraMenu.show {
    max-height: 500px;
    opacity: 1;
}

.btn-send {
    font-weight: bold;
    white-space: nowrap;
}

.btn-send:hover {
    background-color: rgba(69, 179, 119);
    color:white;
}

.code-input {
    background-color: rgba(92, 130, 59);
    color:white;
    padding: 0.5rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-align: center;
}

.code-input:focus {
    outline: none;
    border-color: #4caf50;
    background-color: rgba(92, 130, 59);
}

.code-input::placeholder {
    color: rgba(173, 193, 157);
}

.input-label {
    border-radius: 4px;
    background-color: rgba(92, 130, 59);
    font-size: 1rem;
    color: white;
    padding: 0.6rem;
}

.denied-msg{
  color: white !important;
  font-size: 1.1rem !important;
}

.timer{
  color: white !important;
  font-size: 1.1rem !important;
  display: flex;
  align-items: center;
  justify-content: center;
}