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

body {
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(45deg, #4B0082, #8A2BE2);
    color: #fff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-container {
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('sscsbackground.jpeg') no-repeat center center fixed;
    background-size: cover;
    position: relative;
}

.login-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(75, 0, 130, 0.5), rgba(138, 43, 226, 0.5));
    z-index: 1;
}

.login-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    text-align: center;
    width: 100%;
    max-width: 380px;
    z-index: 2;
}

.logo-container {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    background: #FFFFFF; /* Solid white background for transparent PNG */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border: 2px solid #DDA0DD;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.login-box h2 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 26px;
    font-weight: 600;
}

.input-group {
    margin-bottom: 15px;
}

.input-group input {
    width: 100%;
    padding: 12px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    background: transparent;
    color: #fff;
    font-size: 15px;
    transition: border-color 0.3s;
}

.input-group input:focus {
    outline: none;
    border-color: #D8BFD8;
}

.input-group input::placeholder {
    color: #ccc;
}

.login-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 30px;
    background: linear-gradient(90deg, #8A2BE2, #DDA0DD);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s, background 0.3s;
}

.login-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(90deg, #DDA0DD, #8A2BE2);
}

@media (max-width: 480px) {
    .login-box {
        padding: 25px;
        max-width: 90%;
    }

    .login-box h2 {
        font-size: 22px;
    }

    .logo-container {
        width: 100px;
        height: 100px;
    }
}