/* Atlassian Login Styling */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: linear-gradient(to right, #0052CC, #2684FF);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.login-container {
    width: 100%;
    max-width: 400px;
}

.login-card {
    background: white;
    border-radius: 3px;
    padding: 32px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.logo {
    text-align: center;
    margin-bottom: 24px;
}

.atlassian-logo {
    font-size: 20px;
    font-weight: 600;
    color: #0052CC;
}

h1 {
    font-size: 20px;
    font-weight: 500;
    color: #172B4D;
    text-align: center;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #172B4D;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.form-group input {
    width: 100%;
    padding: 8px;
    font-size: 14px;
    border: 2px solid #DFE1E6;
    border-radius: 3px;
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus {
    border-color: #0052CC;
}

.error-message {
    background: #FFEBE6;
    border: 1px solid #FF5630;
    color: #BF2600;
    padding: 12px;
    border-radius: 3px;
    font-size: 14px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-primary,
.btn-sso,
.btn-google {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-bottom: 8px;
}

.btn-primary {
    background-color: #0052CC;
    color: white;
}

.btn-primary:hover {
    background-color: #0747A6;
}

.btn-sso,
.btn-google {
    background: white;
    color: #172B4D;
    border: 2px solid #DFE1E6;
}

.btn-sso:hover,
.btn-google:hover {
    background-color: #F4F5F7;
}

.divider {
    text-align: center;
    margin: 24px 0;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #DFE1E6;
}

.divider span {
    background: white;
    padding: 0 16px;
    position: relative;
    color: #6B778C;
    font-size: 12px;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    margin-top: 24px;
}

.footer-links a {
    color: #0052CC;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.page-footer {
    text-align: center;
    margin-top: 24px;
    color: white;
    font-size: 12px;
}

.page-footer a {
    color: white;
    text-decoration: none;
}

.page-footer a:hover {
    text-decoration: underline;
}
