body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #222;
    color: #ffffff;
}

header {
    width: 100%;
    display: block;
}

/* .profile-container and all profile-related styles have been moved to profile.css */

.container {
    text-align: center;
    margin-top: 300px;
}

/* Unique styles for index.css */
.logo {
    width: 450px;
    height: auto;
    margin-bottom: 35px;
}

.login-box {
    background: #232323;
    border-radius: 22px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.18);
    padding: 24px 0px 30px 0px;
    margin: 0 auto;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-box form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.login-box form .login-input {
    width: 320px;
    padding: 9px 10px;
    font-size: 20px;
    margin-bottom: 13px;
    border: none;
    border-radius: 18px;
    font-weight: 500;
    background: #2f2f2f;
    color: #fff;
    letter-spacing: 1px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    outline: none;
    transition: box-shadow 0.2s;
    text-align: center;
}
.login-box form .login-input:focus {
    box-shadow: 0 2px 18px rgba(0,0,0,0.22);
}

.register-label {
    margin-bottom: 5px;
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #959595;
    text-align: center;
    width: 100%;
}

.form-group {
    margin-bottom: 18px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-group:last-child {
    margin-bottom: 0;
}

#error-message {
    color: red;
    margin-top: 0;
}

/* Rainbow owner and global role styles moved to global.css */