
body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: url('Image_site/tropical.png') no-repeat center center/cover;
    padding: 0 1.5cm;
    margin: 0;
}
.login-container {
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    text-align: center;
    color: white;
    max-width: 400px;
    width: 100%;
    margin-top: 50px;
}
input, button {
    display: block;
    width: 100%;
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
    box-sizing: border-box;
}
input {
    background: #222;
    border: 1px solid #555;
    color: white;
}
input::placeholder {
    color: #bbb;
}
button {
    background-color: #ff1493;
    color: white;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}
button:hover {
    background-color: #d10d7b;
}
.discord-button {
    position: absolute;
    top: 20px;
    right: 20px;
    border: none;
    border-radius: 5px;
    padding: 0;
    cursor: pointer;
    width: 1.7cm;
    height: 1.7cm;
}
.discord-button img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}
.discord-button:hover {
    opacity: 0.8;
}
