/* Font Face Declaration */
@font-face {
    font-family: 'trackim_font';
    src: url('../trackim_font.ttf');
    font-display: fallback;
}

/* Reset and Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'trackim_font', Arial, Helvetica, sans-serif;
    background-color: #f4f4f4;
    background-image: url('../art/body_background.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
}

/* Layout */
.container {
    max-width: 400px;
    margin: 50px auto;
    padding: 20px;
}

.form-container {
    background: #fff;
    padding: 30px;
    border-radius: 5px;
    text-align: left;
    -webkit-box-shadow: 0px 0px 40px 10px rgba(0, 0, 0, 1);
    -moz-box-shadow: 0px 0px 40px 10px rgba(0, 0, 0, 1);
    box-shadow: 0px 0px 40px 10px rgba(0, 0, 0, 1);
}

/* Logo Styles */
.logo {
    text-align: center;
}

.logo img {
    width: 100%;
    max-width: 200px;
    margin-bottom: 20px;
}

/* Typography */
h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.form-description {
    text-align: center;
    margin-bottom: 20px;
    color: #666;
    font-size: 14px;
}

/* Form Elements */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #555;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
	font-family: 'trackim_font', Arial, Helvetica, sans-serif;
	
}

.form-group input:focus {
    outline: none;
    border-color: #4CAF50;
}

/* Password Requirements */
.password-requirements {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

.requirement {
    margin-top: 2px;
}

.requirement.valid {
    color: #4CAF50;
}

.requirement.invalid {
    color: #f44336;
}

/* Buttons */
.btn {
    width: 100%;
    padding: 12px;
    background: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
	font-family: 'trackim_font', Arial, Helvetica, sans-serif;
}

.btn:hover {
    background: #45a049;
}

.btn:disabled {
    background: #cccccc;
    cursor: not-allowed;
}

/* Messages */
.message {
    margin-top: 20px;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
}

.error {
    background: #ffebee;
    color: #c62828;
}

.success {
    background: #e8f5e9;
    color: #2e7d32;
}

/* Links */
.links {
    margin-top: 20px;
    text-align: center;
}

.links a {
    color: #4CAF50;
    text-decoration: none;
}

.links a:hover {
    text-decoration: underline;
}

/* Divider */
.divider {
    margin: 20px 0;
    text-align: center;
    position: relative;
}

.divider::before,
.divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background-color: #ddd;
}

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
}

/* Google Button Container */
.google-btn-container {
    display: flex;
    justify-content: center;
    margin: 10px 0;
}