@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

body{
    background: linear-gradient(135deg, #ffe6f2 0%, #ff99cc 50%, #ff4da6 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: 'Poppins', sans-serif;
}

.container{
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    margin: auto;
    margin-top: 50px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

h1{
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
    color: #d63384;
}

label{
    font-weight: 600;
}

.form-control{
    border-radius: 8px;
    border: 1px solid #ff99cc;
}

.form-control:focus{
    border-color: #ff4da6;
    box-shadow: 0 0 5px #ff99cc;
}

.btn-primary{
    background-color: #ff4da6;
    border-color: #ff4da6;
    font-weight: 600;
}

.btn-primary:hover{
    background-color: #e60073;
}

.btn-secondary{
    background-color: #ff99cc;
    border-color: #ff99cc;
    font-weight: 600;
}

.btn-secondary:hover{
    background-color: #ff66b2;
}

footer{
    background-color: #d63384;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 60px;
    font-weight: 500;
}