:root {
    --coffee-color: #6f4e37;
    --coffee-hover: #5a3e2b;
    --soft-bg: #f8f9fa;
}

html, body {
    height: 100%;
}

body {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    background-color: var(--soft-bg);
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.auth-card {
    border: none;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    background-color: #ffffff;
}

.btn-coffee {
    background-color: var(--coffee-color);
    border-color: var(--coffee-color);
    color: white;
    font-weight: 600;
    padding: 0.75rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.btn-coffee:hover {
    background-color: var(--coffee-hover);
    border-color: var(--coffee-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(111, 78, 55, 0.3);
}

.btn-link-coffee {
    color: var(--coffee-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.btn-link-coffee:hover {
    color: var(--coffee-hover);
    text-decoration: underline;
}

.form-control {
    border-radius: 0.75rem;
    border: 1px solid #dee2e6;
    padding: 1rem 0.75rem;
}

.form-control:focus {
    border-color: var(--coffee-color);
    box-shadow: 0 0 0 0.25rem rgba(111, 78, 55, 0.15);
}

.form-floating label {
    padding-left: 1rem;
    color: #6c757d;
}

.divider-text {
    position: relative;
    text-align: center;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.divider-text::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #dee2e6;
    z-index: 1;
}

.divider-text span {
    position: relative;
    background-color: #ffffff;
    padding: 0 1rem;
    z-index: 2;
    color: #adb5bd;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.eye-toggle {
    background: none;
    border: none;
    color: #adb5bd;
    transition: color 0.2s;
}

.eye-toggle:hover {
    color: var(--coffee-color);
}

.no-button {
    background: none;
    border: none;
    outline: none;
}

.btn-social {
    width: 100%;
}
