/* General Reset */

@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-Book.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-Bold.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Gotham', sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    overflow-x: hidden;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Login Page Container */
.login-container {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Logo */
.logo {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
}

/* Header */
h1 {
    font-size: 24px;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

/* Subheader */
p {
    font-size: 16px;
    color: #666;
    text-align: center;
    margin-bottom: 30px;
}

/* Input Fields */
.input-field {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Checkbox */
.checkbox-container {
    font-size: 12px;
    color: #333;
    margin-top: 10px;
    
}

.checkbox-container input {
    margin-right: 10px;
}

.checkbox-container a {
    color: #27bcac; /* Set your desired color */
    text-decoration: none; /* Remove underline */
    
}

.checkbox-container a:hover {
    color: #13e7d9; /* Set hover color */
    text-decoration: underline; /* Optionally add underline on hover */
}

/* Button */
.submit-btn {
    width: 100%;
    padding: 10px;
    background-color: #27bcac;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 700;
    transition: background-color 0.3s ease;
    font-weight: bold;
}

.submit-btn:hover {
    background-color: #13e7d9;
}

/* Support Text Styling */
.support-text {
    font-size: 10px; /* Adjust font size as needed */
    color: #666; /* You can adjust the text color if desired */
    text-align: center;
}

.support-link {
    color: #666; /* Set desired color */
    text-decoration: none; /* Remove underline */
}

.support-link:hover {
    color: #27bcac; /* Set hover color */
    text-decoration: none; /* Optional underline on hover */
}

/* Error Message */
.error-message {
    color: red;
    font-size: 12px;
    text-align: center;
    margin-top: 10px;
}