body {
    font-family: Arial, sans-serif;
    background-color: whitesmoke;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    color: white;
}

.login-container {
    background-color: whitesmoke;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
}


body {
    margin: 0;
    padding: 0;
    height: 100vh;
    overflow: hidden;
    position: relative;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('pics/sto2.png'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#logo {
    font-family: 'Orbitron', sans-serif;
    position: fixed;  
    top: 20px;       
    left: 20px;     
    color: white;    
    font-size: 100px; 
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); 
    z-index: 2;      
    padding: 10px 20px;
    background-color: rgba(0, 0, 0, 0.0); 
 
}


.login-container {
    position: fixed;
    bottom: -80px;
    right: 20px;
    max-width: 400px;
    margin: 100px auto;
    padding: 20px;
    padding-bottom: 0px;
    padding-right: 39px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

i{
    color: whitesmoke;
}

h2 {
    color: #333;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

input {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid whitesmoke;
    border-radius: 4px;
}

button {
    width: 100%;
    padding: 10px;
    background-color: blueviolet;
    color: #fff;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: coral;
}

p {
    margin-top: 15px;
    font-size: 14px;
}

a {
    color: #007BFF;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
