body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: url('/assets/images/background.webp') no-repeat center center fixed;
    background-size: cover;
    color: #2F3035;
}
.content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.card {
    max-width: 400px;
    width: 100%;
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
.logo {
    display: block;
    margin: 0 auto 20px;
    width: 150px;
}
.btn-primary {
    background-color: #FF52A3;
    border-color: #FF52A3;
    padding-bottom: 1px;
}
.btn-primary:hover {
    background-color: #3C91E6;
    border-color: #3C91E6;
}
p, a {
    font-size: 10px;
    margin-top:5px;
}
footer {
    width: 100%;
    background-color: #3D91E6;
    color: white;
    text-align: center;
    padding: 2px 0;
    border-top: 2px solid #ccc;
    font-size: 10px !important;
}
footer a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}
footer a:hover {
    text-decoration: underline;
}