@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Poppins:wght@400;500;600;700&display=swap');

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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #a8b5ff 0%, #e8b5ff 25%, #ffc4e8 50%, #ffd4a3 75%, #a8e6ff 100%);
    min-height: 100vh;
    padding: 20px;
    position: relative;
    overflow-x: hidden;
}



.container {
    position: relative;
    z-index: 1;
}

h1 {
    font-family: 'Fredoka One', cursive;
    text-align: center;
    color: #f8f8ff;
    margin-bottom: 30px;
    font-weight: 400;
    font-size: 3rem;
    letter-spacing: 1px;
    text-shadow:
        1px 1px 0 #d946ef,
        2px 2px 0 #c026d3,
        3px 3px 0 #a21caf,
        4px 4px 0 #86198f,
        5px 5px 0 #701a75,
        6px 6px 0 #581c87,
        7px 7px 0 #3b0764,
        8px 8px 20px rgba(0, 0, 0, 0.3);
    animation: titleFloat 3s ease-in-out infinite;
}

@keyframes titleFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-5px);
    }
}

h2 {
    font-family: 'Fredoka One', cursive;
    color: #f8f8ff;
    margin-bottom: 15px;
    font-weight: 400;
    text-shadow:
        1px 1px 0 #a855f7,
        2px 2px 0 #9333ea,
        3px 3px 0 #7e22ce,
        4px 4px 10px rgba(0, 0, 0, 0.2);
}

.card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);

    overflow: hidden;
}


.card-header {
    background: linear-gradient(135deg, #a8b5ff 0%, #e8b5ff 100%);
    border: none;
    padding: 20px;
    border-radius: 25px 25px 0 0 !important;
}

.card-header h2 {
    font-family: 'Fredoka One', cursive;
    color: #f8f8ff;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 400;
    text-shadow:
        1px 1px 0 #a855f7,
        2px 2px 0 #9333ea,
        3px 3px 0 #7e22ce,
        4px 4px 10px rgba(0, 0, 0, 0.2);
}

.card-body {
    padding: 25px;
}

.form-label {
    color: #6b5b95;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-control {
    border: 2px solid #e8e8ff;
    border-radius: 15px;
    padding: 12px 18px;
    transition: all 0.3s ease;
    background: #fafafe;
}

.form-control:focus {
    border-color: #a8b5ff;
    box-shadow: 0 0 0 0.2rem rgba(168, 181, 255, 0.25);
    background: #fff;
}

.btn {
    border: none;
    border-radius: 15px;
    padding: 12px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.btn-warning {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(240, 147, 251, 0.4);
}

.btn-warning:hover {
    background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
    box-shadow: 0 6px 20px rgba(240, 147, 251, 0.6);
    color: white;
}

.btn-danger {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    box-shadow: 0 4px 15px rgba(250, 112, 154, 0.4);
}

.btn-danger:hover {
    background: linear-gradient(135deg, #fee140 0%, #fa709a 100%);
    box-shadow: 0 6px 20px rgba(250, 112, 154, 0.6);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.75rem;
}

.row-cols-1 .col .card {
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 248, 255, 0.9) 100%);
    position: relative;
}

.row-cols-1 .col .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg,
            #a8b5ff 0%,
            #e8b5ff 25%,
            #ffc4e8 50%,
            #ffd4a3 75%,
            #a8e6ff 100%);
    border-radius: 25px 25px 0 0;
}

.card-title {
    color: #6b5b95;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.card-text {
    color: #8b7ba8;
    font-size: 0.95rem;
    line-height: 1.6;
}

.card-text strong {
    color: #6b5b95;
    font-weight: 600;
}

.card-footer {
    background: rgba(248, 248, 255, 0.5);
    border: none;
    padding: 15px 20px;
    border-radius: 0 0 25px 25px;
}

.alert-info {
    background: linear-gradient(135deg, rgba(168, 181, 255, 0.2) 0%, rgba(232, 181, 255, 0.2) 100%);
    border: 2px solid #a8b5ff;
    border-radius: 15px;
    color: #6b5b95;
    font-weight: 500;
}

.decorative-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    opacity: 0.1;
}

.shape-1 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    top: 10%;
    left: 5%;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 50%;
    bottom: 15%;
    right: 10%;
}

.shape-3 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    border-radius: 50%;
    top: 60%;
    left: 80%;
}