* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    margin: 0;
    min-height: 100vh;
    background-image: url("../../images/backg.avif");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.login-wrapper {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-box {
    width: 380px;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(12px);
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 0 30px rgba(0,255,100,0.4);
    text-align: center;
}

.logo {
    width: 140px;
    margin-bottom: 20px;
}

.tabs {
    display: flex;
    margin-bottom: 20px;
}

.tab {
    flex: 1;
    padding: 10px;
    background: transparent;
    border: none;
    color: #aaa;
    font-size: 16px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
}

.tab.active {
    color: #00ff99;
    border-bottom: 2px solid #00ff99;
}

form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 30px;
    border: none;
    outline: none;
    background: #f2f2f2;
}

form button {
    width: 100%;
    padding: 12px;
    border-radius: 30px;
    border: none;
    background: linear-gradient(135deg, #00ff99, #00ccff);
    color: #000;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

form button:hover {
    transform: scale(1.05);
}
