* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f4f4f4;
}

.auth-container {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 350px;
}

/* Monietyz Logo */
.monietyz-logo {
    width: 150px;
    margin-bottom: 10px;
}

h2 {
    font-size: 24px;
    color: #222;
    margin-bottom: 5px;
}

.auth-container {
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 350px;
}

.monietyz-logo {
    width: 150px;
    margin-bottom: 10px;
}

p {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #333;
}

.google-btn, .facebook-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    border: none;
    margin-bottom: 10px;
}

.google-btn {
    background: white;
    color: #555;
    border: none;     
    border-radius: 50px;
}

.google-btn img, .facebook-btn img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.google-btn:hover {
    background: black;
    color: white;
    transition: 0.3s;
}

.facebook-btn {
    background: white;
    color: #555;
    border: none;
    border-radius: 50px;
}

.facebook-btn:hover {
    background: black;
    color: white;
    transition: 0.3s;
    }

