/* static/instagram.css */
@import url('https://www.instagram.com/static/bundles/es6/ConsumerUICommons/__/*/*.css');
* {
    box-sizing: border-box;
}
body {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    min-height: 100vh;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}
.root {
    width: 100%;
    max-width: 350px;
}
.login-page {
    background: white;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.login-container {
    padding: 40px 40px 20px;
}
.login-box {
    text-align: center;
}
.login-logo img {
    width: 175px;
    margin-bottom: 24px;
}
.form-group {
    margin-bottom: 8px;
}
.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #dbdbdb;
    border-radius: 3px;
    background: #fafafa;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}
.form-group input:focus {
    border-color: #0095f6;
    background: white;
}
.login-btn {
    width: 100%;
    padding: 8px 0;
    background: linear-gradient(45deg, #0095f6, #007bb5);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    margin: 8px 0;
    transition: opacity 0.2s;
}
.login-btn:hover {
    opacity: 0.9;
}
.login-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}
.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
.divider {
    height: 1px;
    background: #dbdbdb;
    margin: 24px 0;
}
.forgot-password {
    color: #00376b;
    font-size: 14px;
    text-decoration: none;
}
.forgot-password:hover {
    text-decoration: underline;
}
.signup-section {
    padding: 20px 40px;
    text-align: center;
    color: #8e8e8e;
    font-size: 14px;
}
.signup-section a {
    color: #0095f6;
    text-decoration: none;
    font-weight: 600;
}
