<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Modified Login/Registration Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f7fa;
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
}

/* Base container styles */
.login-container, 
.registration-container {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin: 2rem auto;
}

/* Default sizing for larger screens */
.login-container {
    width: 400px;
    max-width: 90%;
}

.registration-container {
    width: 500px;
    max-width: 90%;
}

/* Header styling */
.login-header,
.registration-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-header h1,
.registration-header h1 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 0.3rem;
}

.login-header p,
.registration-header p {
    color: #7f8c8d;
	text-align: left;
}

.login-logo,
.registration-logo {
    font-size: 2rem;
    font-weight: bold;
    color: #000000;
    margin-bottom: 1rem;	
	text-align: left;
}

/* Form elements */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.9rem;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

/* Buttons */
.btn-login,
.btn-register {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 1.5rem;
}

.btn-login:hover,
.btn-register:hover {
    background-color: #2980b9;
}

/* Form rows for side-by-side fields */
.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.form-group-half {
    flex: 1;
}

/* Messages */
.error-message {
    background-color: #fdedeb;
    color: #e74c3c;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.success-message {
    background-color: #ebf7ed;
    color: #27ae60;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

/* Section headings */
h2 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin: 1.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
	text-align: left;
}

h2 i {
    margin-right: 8px;
    color: #3498db;
}

/* Required field indicator */
.required {
    color: #e74c3c;
}

/* Form information box */
.form-info {
    background-color: #edf7ff;
    padding: 1rem;
    border-radius: 4px;
    margin: 1.5rem 0;
    font-size: 0.9rem;
    color: #2c3e50;
}

.form-info i {
    color: #3498db;
    margin-right: 8px;
}

.links {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.links a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s;
}

.links a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Optional background pattern - only visible on desktop */
.bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #f5f7fa, #e4e7ee);
    opacity: 1;
    z-index: -1;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    body {
        display: block;
        padding: 0;
        background-color: white;
    }
    
    .login-container,
    .registration-container {
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        box-shadow: none;
        margin: 0;
        min-height: 100vh;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .bg-pattern {
        display: none; /* Hide pattern background on mobile */
    }
}

/* Special container styling for small forms only */
@media screen and (max-width: 768px) {
    body.small-form {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 1rem;
        background-color: #f5f7fa;
    }
    
    body.small-form .login-container {
        width: 90%;
        max-width: 400px;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        margin: 2rem auto;
        min-height: auto;
    }
    
    body.small-form .bg-pattern {
        display: block; /* Show pattern background for small forms */
    }
}

.password-feedback ul {
    padding-left: 20px;
    margin-top: 10px;
}

.password-feedback li {
    margin-bottom: 5px;
}

</pre></body></html>