/* Login Page Styles */


/* Login Container Styling */
.loginContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    gap: 48px;
    background: transparent;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

/* Login Header */
.loginHeader {
    text-align: center;
    margin-bottom: 0;
}

.loginHeaderText {
	background: var(--cta-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: fit-content;
}

.mainTitle {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.1;
    color: #1a1a1a;
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
}

.subtitle {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #666;
    margin: 0;
    line-height: 1.4;
	text-align: center;
}

/* Login Card Styling */
.loginCard {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 24px;
    flex: 1;
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    transition: all 0.2s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 5;
}

.loginCard:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
    background: rgba(255, 255, 255, 0.15);
}

/* Login Input Styling */
.loginCard .Input {
    margin-bottom: 8px;
	border-radius: 22px;
}

.loginCard .Input input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 22px;
    color: #1a1a1a;
    font-size: 16px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.loginCard .Input input::placeholder {
    color: rgba(26, 26, 26, 0.6);
}

.loginCard .Input input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.loginButton {
	height: 44px;
    color: white;
    padding: 8px;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    background: var(--color-primary-ci);
}

.loginButton a {
    text-decoration: none;
    color: white;
    width: 100%;
    font-weight: 500;
    font-size: 14px;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    display: block;
}

/* Login Background and Title Styling */
.loginBackground {
    box-shadow: 0px 0px 32px rgba(0,0,0,0.5);
    border-radius: 4px;
}

.loginTitle {
    text-align: center;
    margin: 0 auto;
    max-width: 800px;
}

.loginTitle h1 {
    color: white;
    font-size: 48px;
    font-weight: bold;
    text-align: center;
    /* margin-bottom: 40px; */
}

h2 {
	color: var(--color-success);
}

/* Mobile responsiveness for login */
@media (max-width: 768px) {
    .loginContainer {
        padding: 20px 10px;
    }
    
    .loginCard {
        max-width: 100%;
        margin: 0 20px;
    }
}
