/* 
  Auth Pages Styling (Login & Register)
  Precise match for the provided mobile reference design
*/

.auth-container {
    max-width: 450px;
    margin: 0 auto;
    padding: 24px 20px;
    font-family: 'Outfit', sans-serif;
    background: #fff;
    min-height: 100vh;
}

.auth-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.back-btn {
    width: 44px;
    height: 44px;
    background: #f1f3f4;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    text-decoration: none;
    color: #000;
}

.auth-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
}

.form-group {
    margin-bottom: 16px;
}

.form-input {
    width: 100%;
    padding: 18px 20px;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    font-size: 1rem;
    color: #111827;
    outline: none;
    transition: all 0.2s;
    font-family: 'Outfit', sans-serif;
    background-color: #fff;
    box-sizing: border-box;
}

.form-input::placeholder {
    color: #6b7280;
    font-weight: 500;
}

.form-input:focus {
    border-color: #111827;
}

.phone-input-container {
    display: flex;
    gap: 12px;
}

.country-code {
    width: 90px;
    flex-shrink: 0;
}

.add-logo-group {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 16px;
    margin-bottom: 32px;
    cursor: pointer;
    background: #fff;
    min-height: 80px;
}

.logo-preview {
    width: 56px;
    height: 56px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-label {
    font-weight: 600;
    color: #111827;
    font-size: 1rem;
}

.auth-btn {
    width: 100%;
    padding: 20px;
    background: #18181b;
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 24px;
    transition: all 0.2s;
    font-family: 'Outfit', sans-serif;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.auth-btn:hover {
    background: #000;
}

.auth-footer {
    text-align: center;
    font-size: 1rem;
    color: #4b5563;
}

.auth-link {
    color: #111827;
    font-weight: 700;
    text-decoration: none;
    margin-left: 4px;
}

.forgot-password {
    display: block;
    text-align: right;
    margin-top: -8px;
    margin-bottom: 24px;
    color: #111827;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
}

/* Custom Select Styling */
.select-wrapper {
    position: relative;
    width: 100%;
}

.select-wrapper::after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2.5' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E") no-repeat center center;
    pointer-events: none;
}

select.form-input {
    appearance: none;
    padding-right: 48px;
}