/* signup.css - Pixel-perfect match to your screenshot */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: #fafafa;
    min-height: 100vh;
    padding: 20px 0;
}

.auth-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.auth-container {
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
}

.logo {
    text-align: center;
    margin-bottom: 40px;
}

.logo img {
    height: 50px;
}

.auth-container h1 {
    font-size: 23px;
    font-weight: 500;
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.auth-form input {
    width: 100%;
    padding: 17px 20px;
    margin-bottom: 16px;
    border: 1px solid #dbdbdb;
    border-radius: 8px;
    background-color: #fafafa;
    font-size: 16px;
    color: #262626;
}

.auth-form input::placeholder {
    color: #8e8e8e;
    font-size: 16px;
}

.auth-form input:focus {
    outline: none;
    border-color: #a8a8a8;
    background-color: #fff;
}

.password-wrapper {
    position: relative;
    margin-bottom: 16px;
}

.password-wrapper input {
    padding-right: 55px;
}

.toggle-password {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #8e8e8e;
    font-size: 18px;
    cursor: pointer;
    user-select: none;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: #f9b700;
    color: rgb(0, 0, 0);
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    margin: 10px 0 20px;
    transition: background 0.2s;
}

.submit-btn:hover {
    background: #e5a600;
}

.login-link {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin-bottom: 25px;
}

.login-link a {
    color: #1602F5;
    font-weight: 600;
    text-decoration: none;
}

.login-link a:hover {
    text-decoration: underline;
}

.divider {
    position: relative;
    text-align: center;
    margin: 25px 0;
    color: #999;
    font-size: 13px;
    font-weight: 600;
}

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

.divider span {
    background: #fafafa;
    padding: 0 18px;
    z-index: 2;
    position: relative;
}

.google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 13px;
    background: white;
    border: 1px solid #dbdbdb;
    border-radius: 8px;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 30px;
    transition: all 0.2s;
}

.google-btn img {
    width: 20px;
    height: 20px;
}

.google-btn:hover {
    background: #f7f7f7;
}

.terms {
    text-align: center;
    font-size: 12px;
    line-height: 16px;
    color: #8e8e8e;
    margin-top: 10px;
}

.terms a {
    color: #1602F5;
    text-decoration: none;
}

.terms a:hover {
    text-decoration: underline;
}

/* Fully Responsive */
@media (max-width: 480px) {
    .auth-container {
        padding: 0 15px;
    }

    .logo img {
        height: 45px;
    }
}

.error-messages {
    margin: 15px 0;
}

.error {
    background: #fee;
    color: #c33;
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
    border: 1px solid #fcc;
}