body {
    font-family: Proxima Nova;
	background-image: url('background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
}

h2 {
    margin-bottom: 20px;
    color: #333;
}

.input-group {
    margin-bottom: 15px;
    text-align: left;
}

.input-group label {
    display: block;
    margin-bottom: 5px;
    color: #555;
}

.input-group input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.input-group input:focus {
    border-color: #ff5722;
    outline: none;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #ff5722;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #e64a19;
}

.links {
    margin-top: 10px;
}

.links a {
    color: #007bff;
    text-decoration: none;
    margin: 0 5px;
    font-size: 14px;
}

.links a:hover {
    text-decoration: underline;
}

.social-login {
    margin-top: 20px;
}

.social-btn {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: opacity 0.3s ease;
}

.social-btn.google {
    background-color: #db4437;
    color: #fff;
}

.social-btn.facebook {
    background-color: #4267b2;
    color: #fff;
}

.social-btn:hover {
    opacity: 0.9;
}

.error-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
}

h1 {
    color: #ff5722; /* Mercari's orange color */
    margin-bottom: 20px;
    font-size: 24px;
}

p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
}

a {
    color: #007bff; /* Blue link color */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.password.reset-link {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #ff5722;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
}

.password.reset-link:hover {
    background-color: #e64a19; /* Darker orange on hover */
}

.social-btn {
    display: block;
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.social-btn.google {
    background-color: #db4437; /* Google red */
    color: #fff;
}

.social-btn.facebook {
    background-color: #4267b2; /* Facebook blue */
    color: #fff;
}

.social-btn:hover {
    opacity: 0.9;
}

.search-container {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 400px;
    text-align: center;
    margin: 0 auto;
}

.search-container h2 {
    color: #333;
    margin-bottom: 20px;
}

.search-container input[type="text"] {
    width: 80%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    margin-bottom: 15px;
}

.search-container button {
    width: 50%;
    padding: 10px;
    background-color: #ff5722;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.search-container button:hover {
    background-color: #e64a19;
}