* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: 'Raleway', sans-serif;
}

body {
    background: url('login-d188cac4.jpg') no-repeat center center fixed;
    background-size: cover;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    color: white;
    background: rgba(0, 0, 0, 0.5); /* Optional: dark overlay over background */
}

.content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 600; /* Bold version of Raleway */
}

.content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 400; /* Normal weight for Raleway */
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.2rem;
    color: white;
    background-color: #007bff;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #0056b3;
}

.btn-red {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.2rem;
    color: white;
    background-color: #dc3545;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.btn-red:hover {
    background-color: #c82333;
}
