/*

 Author: Kaya Firat
 Date: 12/5/2025
 File: style.css
 Version: 1.0
 Description: Base Style Sheet for Login page

 */

body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #121212;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.login-container {
  background-color: #1e1e1e;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  width: 320px;
  text-align: center;
}

.login-container h2 {
  margin-bottom: 20px;
}

input[type="text"],
input[type="password"] {
  width: 90%;
  padding: 12px;
  margin: 10px 0;
  border: none;
  border-radius: 8px;
  background-color: #2a2a2a;
  color: #fff;
}

button {
  width: 100%;
  padding: 12px;
  margin-top: 15px;
  background-color: #6200ee;
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  background-color: #3700b3;
}

#message {
  margin-top: 15px;
  color: #ff5252;
}

.error-border {
  border-color: red !important;
}

.error-text {
  color: red;
  margin-bottom: 10px;
  font-size: 14px;
}
