/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Mar 8, 2018, 12:02:15 PM
    Author     : condor0s
*/

/* Background */
.login-bg {
  min-height: 100vh;
  background: linear-gradient(135deg, #f8f9fb 0%, #eef2f7 50%, #e9eef6 100%);
}

/* Card container sizing */
.login-card {
  width: 100%;
  max-width: 460px;
  border-radius: 1rem;
}

/* Optional logo */
.login-logo {
  max-width: 160px;
  display: block;
  margin: 0 auto 0.5rem;
}

/* Inputs */
.input-group-text {
  background-color: #fff;
  border-right: 0;
}

.input-group .form-control {
  border-left: 0;
}

.form-control,
.input-group-text,
.btn {
  border-radius: 0.75rem !important;
}

/* Focus ring */
.form-control:focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 144, 220, 0.25);
  border-color: #80bdff;
}

/* Primary button (Bootstrap 4 secondary -> primary for contrast) */
.btn-primary {
  font-weight: 600;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
  box-shadow: 0 0.25rem 0.75rem rgba(0,0,0,.08);
}

/* Subtle link hover */
.hover-underline:hover { text-decoration: underline; }

/* Messages */
.login-messages {
  min-height: 1.25rem;
  margin: 0.5rem 0 1rem;
  color: #dc3545; /* κόκκινο για errors – άλλαξέ το κατά περίπτωση */
}

/* Small helpers for very small screens */
@media (max-width: 360px) {
  .input-group-text { padding-left: 0.6rem; padding-right: 0.6rem; }
}
