/* styles.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    width: 80%;
    margin: 0 auto;
}

header {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
}

header .logo img {
    height: 50px;
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
}

header nav ul li {
    margin: 0 10px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

header nav ul li a:hover {
    text-decoration: underline;
}

main {
    padding: 20px 0;
}

footer {
    background-color: #fff;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    line-height: 50px;
}

footer .social-media a {
    margin: 0 10px;
}

footer .social-media img {
    height: 30px;
}

/* static/css/style.css */
.social-login-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn {
    padding: 10px;
    border: none;
    border-radius: 5px;
    text-align: center;
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.cute-btn {
    background-color: #fcb0b3 !important; /* Soft pastel pink */
    border-color: #fca3a7 !important; /* Soft border */
    color: #fff !important; /* White text */
    border-radius: 20px; /* Smaller round corners */
    font-family: 'Comic Sans MS', 'Segoe UI', cursive; /* Playful font */
    font-size: 12px; /* Smaller font */
    padding: 6px 12px; /* Reduced padding for smaller size */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    transition: all 0.3s ease-in-out; /* Smooth hover transition */
}

.cute-btn:hover {
    background-color: #f6a4a7 !important; /* Slightly darker pink on hover */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15); /* Slightly deeper shadow on hover */
    transform: scale(1.05); /* Slight grow effect */
}

.plus-btn {
    background-color: #4CAF50; /* Green background */
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 24px; /* Large font size for the plus sign */
    line-height: 24px;
    border-radius: 50%; /* Circular button */
    cursor: pointer;
    width: 50px;
    height: 50px; /* Circular shape */
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    transition: background-color 0.3s ease;
}

.plus-btn:hover {
    background-color: #45a049; /* Darker green on hover */
}

.small-box {
    border: 1px solid #ddd; /* Light gray border */
    padding: 10px;          /* Some padding inside the box */
    margin: 10px 0;         /* Margin around the box */
    max-width: 500px;       /* Limit the width of the box */
    background-color: #f9f9f9; /* Light background color */
    overflow-wrap: break-word; /* Handle long words */
}




.btn-google { background-color: #db4437; }
.btn-facebook { background-color: #3b5998; }
.btn-instagram { background-color: #C13584; }
.btn-twitter { background-color: #1DA1F2; }
.btn-apple { background-color: #000000; }

