* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #000000;
    color: #ffffff;
    min-height: 100vh;
    overflow: hidden;
}

.container {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-card {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #ffffff;
    border-radius: 20px;
    padding: 48px 40px;
    width: 100%;
    max-width: 480px;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 10;
}

/* Logo Section */
.logo-section {
    margin-bottom: 40px;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}

.logo-icon {
    width: 60px;
    height: 60px;
    background: #ffffff;
    color: #000000;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.vero {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.tech {
    font-size: 32px;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 2px;
}

/* Welcome Text */
.welcome-text {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

/* Login Buttons */
.login-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.login-btn {
    background: #000000;
    border: 2px solid #ffffff;
    border-radius: 12px;
    padding: 16px 24px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.login-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.8);
}

.login-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}


body {
    background: #000;
    color: #fff;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.login-background {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #000;
}

.logo-container {
    margin-bottom: 48px;
    text-align: center;
}

.logo-text {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    letter-spacing: 2px;
}

.login-frame {
    background: transparent;
    border: 2px solid #fff;
    border-radius: 24px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    min-width: 320px;
}

.login-btn {
    background: #000;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 16px;
    padding: 16px 32px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    width: 100%;
    box-sizing: border-box;
}

.login-btn:hover {
    background: #222;
    color: #fff;
}