@font-face {
    font-family: 'GrizeSportsDemo';
    src: url('../fonts/GrizeSportsDemoRegular-0v9BX.otf') format('opentype');
}

/* Page background */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #44f3ff, #62ffa3);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Container */
.login-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Login box */
.login-box {
    background: black;
    padding: 40px;
    border-radius: 12px;
    width: 300px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* Title */
.login-box h2 {
    font-family: 'GrizeSportsDemo', sans-serif;
    margin-bottom: 20px;
}

/* Icon */
.login-icon {
    width: 60px;
    margin-bottom: 20px;
}

/* Inputs */
.login-box input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 6px;
}

/* Button */
.login-box button {
    width: 100%;
    padding: 10px;
    background: #42ffd6;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
    left: 5px;
}

.login-box button:hover {
    background: #2edbb8;
}

/* Register link */
.register-link {
    margin-top: 15px;
    font-size: 0.9rem;
}

.register-link a {
    color: #42ffd6;
    text-decoration: none;
}

.home-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    cursor: pointer;
}