/*
# encoding: utf-8
# frozen_string_literal: true
#
# Redmine plugin OAuth
#
# Karel Pičman <karel.picman@kontron.com>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
#
# Changes
# D.Dawson - 30 June 2023 - Modify 'Old Login' / 'Use ProID' buttons to also look consistent with ProID
# D.Dawson - 29 June 2023 - Modify new Login Button to look consistent with ProID
# D.Dawson - 23 June 2023 - Make Old Login setting more visible - move style settings in to css
# D.Dawson - 23 June 2023 - Modify new Login Button to look consistent with ProID
# D.Dawson - 16 May 2023 - Check in Redmine OAuth Plugin for testing and development
*/

button.big-button {
  margin:auto;
  display:block;
  width: 240px;
  height: 35px;
  border: none;
  border-radius: 5px;
  color: white;
}

em#old-login-chkbox {
  text-align: center;
  font-size: 120%;
  color: crimson;
}

em#old-login-num-days {
  text-align: center; 
  font-size: 100%; 
  color: crimson;
}

input#button_color {
  padding: 0;
}

.oauth-hidden {
  display: none;
}

button.big-button:hover {
  background: #dddddd !important;
}
