/* style.css - Simplified single-container layout */

:root {
    /* Define color variables */
    --primary-color: #6f42c1;
    --secondary-color: #f8f9fa;
    --text-color: #212529;
    --text-color-light: #6c757d;
    --border-color: #dee2e6;
    --white: #ffffff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    padding: 40px;
    /* Add padding around the body */
    color: var(--text-color);
    /* Apply background image */
    background-image: url("/fraud-checker-left-banner-background-min.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /* Keep background fixed during scroll */
    /* Center the form container */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    box-sizing: border-box;
}

/* Form Container Styling */
.form-container {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 400px;
    width: 100%;
}

.form-logo {
    max-width: 225px;
    /* Increased size (150px * 1.5) */
    height: auto;
    margin-bottom: 25px;
}

.form-container h2 {
    font-size: 24px;
    font-weight: 400;
    color: var(--text-color);
    margin: 0 0 8px;
}

.form-container .subtitle {
    font-size: 14px;
    color: var(--text-color-light);
    margin-bottom: 32px;
}

/* Styling for sign-in options */
.sign-in-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.signin-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.form-group {
    width: 100%;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(111, 66, 193, 0.1);
}

.form-group input::placeholder {
    color: var(--text-color-light);
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    width: 100%;
    transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s;
    text-align: center;
    box-sizing: border-box;
    text-decoration: none;
}

.btn img {
    height: 20px;
    margin-right: 12px;
}

.btn-primary {
    background-color: #2f2f2f;
    color: var(--white);
    border-color: #2f2f2f;
}

.btn-primary:hover {
    background-color: #1f1f1f;
    border-color: #1f1f1f;
}

.btn-google {
    background-color: var(--white);
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.btn-google:hover {
    background-color: #f5f5f5;
    border-color: #d5d5d5;
}

.divider {
    margin: 10px 0;
    text-align: center;
    position: relative;
    color: var(--text-color-light);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

.divider::before,
.divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background-color: var(--border-color);
}

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
}

/* Progress and Error Styling */
.progress {
    margin: 20px 0;
    color: var(--primary-color);
    font-size: 14px;
    text-align: center;
}

.error {
    color: #dc3545;
    margin: 15px 0;
    text-align: center;
    font-size: 14px;
    padding: 10px;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
}

/* Removed responsive adjustments for the two-column layout */