body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'San Francisco', 'Segoe UI', Roboto, Helvetica, sans-serif;
    background-color: #000;
    color: #fff;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.header {
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 22px;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    position: fixed;
    width: 95%;
    top: 0;
    z-index: 100;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 1;
}

.apple-logo {
    height: 16px;
    fill: #fff;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    padding: 20px;
    margin-top: 44px;
}

.login-box {
    width: 100%;
    max-width: 768px;
    background-color: #1a1a1a;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.icloud-logo {
    text-align: center;
    margin-bottom: 30px;
}

.icloud-logo svg {
    width: 60px;
    height: 60px;
}

h1 {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
}

.input-group {
    margin-bottom: 20px;
}

input {
    width: 100%;
    padding: 12px 15px;
    background-color: #2c2c2e;
    border: 1px solid #3a3a3c;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    box-sizing: border-box;
}

input:focus {
    outline: none;
    border-color: #0071e3;
}

/*
.button-group {
    margin-top: 30px;
}

button {
    width: 100%;
    padding: 12px;
    background-color: #0071e3;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
}

button:hover {
    background-color: #0077ed;
}
*/
.links {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
}

a {
    color: #0071e3;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.footer {
    padding: 20px;
    text-align: center;
    font-size: 12px;
    color: #86868b;
}