/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Unbounded:wght@400;700&display=swap');

body {
    font-family: 'Outfit', sans-serif;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Background Effects */
.auth-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #000000;
}

/* Form Elements */
.login-container {
    max-width: 620px;
    width: 100%;
    margin: 0 auto;
    padding: 30px;
    z-index: 10;
    background: #212529;
    border: 1px solid #333;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.custom-input-group {
    background: #000000;
    border: 1px solid #333;
    border-radius: 12px;
    height: 56px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    margin-bottom: 20px;
    transition: border-color 0.3s ease;
}

.custom-input-group:focus-within {
    border-color: #ff0050;
}

.custom-input {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 16px;
    width: 100%;
    height: 100%;
    outline: none;
}

.custom-input::placeholder {
    color: #666;
}

.custom-input:focus {
    background: transparent;
    color: #fff;
    box-shadow: none;
}

.input-icon {
    background: transparent;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    color: #888;
}

/* Buttons */
.btn-login {
    background: #fff;
    color: #000;
    font-weight: 600;
    font-size: 18px;
    border-radius: 12px;
    width: 100%;
    height: 56px;
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-transform: capitalize;
}

.btn-login:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
    color: #000;
}

.btn-create-account {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    border-radius: 12px;
    /* iOS style often boxy, but user wants 'App' style, sticking close to rounded input */
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin-top: 20px;
    transition: background 0.3s ease;
}

.btn-create-account:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}

/* Divider */
.divider-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
}

.divider-line {
    height: 1px;
    width: 80px;
    background-color: rgba(255, 255, 255, 0.3);
}

.divider-text {
    margin: 0 15px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

/* Social Buttons */
.social-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-btn {
    width: 56px;
    height: 56px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
    border: none;
    padding: 0;
}

.social-btn:hover {
    transform: scale(1.1);
}

.social-icon {
    width: 28px;
    height: 28px;
}

/* Links */
.forgot-password {
    text-align: right;
    margin-bottom: 20px;
}

.forgot-password a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
}

.forgot-password a:hover {
    opacity: 1;
}

.privacy-policy {
    margin-top: 40px;
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

.privacy-policy a {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}

.privacy-policy a:hover {
    text-decoration: underline;
}