* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #000000;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
    width: 100%;
    max-width: 600px;
    padding: 20px;
    margin: 40px auto;
}

.login-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    width: 100%;
}

.legal-text h3, .privacy-policy h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 18px;
    color: #67dfcf;
}

.legal-text p, .privacy-policy p, .privacy-policy li {
    margin-bottom: 15px;
    line-height: 1.6;
}

.privacy-policy ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.privacy-policy a, .legal-text a {
    color: #1f9cfe;
    text-decoration: none;
}

.privacy-policy a:hover, .legal-text a:hover {
    text-decoration: underline;
}

.logo {
    width: 120px;
    height: auto;
    margin-bottom: 30px;
}

h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

p {
    color: #aaaaaa;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    width: 100%;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: transform 0.2s, opacity 0.2s;
    cursor: pointer;
    border: none;
    outline: none;
}

.btn-gradient {
    background: linear-gradient(135deg, #67dfcf 0%, #1f9cfe 100%);
    color: #ffffff;
}

.btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.btn:active {
    transform: translateY(0);
}

.success-icon {
    font-size: 64px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #67dfcf 0%, #1f9cfe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text {
    background: linear-gradient(135deg, #67dfcf 0%, #1f9cfe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

.avatar-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
}

.avatar-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.avatar-frame {
    width: 106px;
    height: 106px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #67dfcf 0%, #1f9cfe 100%);
    padding: 3px;
    margin-bottom: 10px;
}

.avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #000;
    object-fit: cover;
    display: block;
}

.avatar-label {
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 0;
    font-weight: 500;
}
