/* =========================================================
   GLOBAL RESET
   ========================================================= */

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

/* =========================================================
   BODY STYLING (GLOBAL)
   ========================================================= */

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to bottom right, #f8f3ff, #efe4ff);
    min-height: 100vh;
    color: #5c4b73;
    overflow-x: hidden;
}

/* =========================================================
   SHARED LAYOUT
   ========================================================= */

.main-container {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 100vh;
}

.content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

/* =========================================================
   BACKGROUND DECORATION
   ========================================================= */

.background-flower {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.7), rgba(230,210,255,0.1));
    filter: blur(20px);
    z-index: 0;
}

.flower1 {
    top: -100px;
    left: -100px;
}

.flower2 {
    bottom: -120px;
    right: -120px;
}