body {
    background-color: #fff0f6;
    font-family: 'Arial', sans-serif;
    position: relative;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    z-index: 1;
}

.login-card {
    width: 100%;
    max-width: 400px;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    text-align: center;
    position: relative;
    z-index: 2;
}

.login-card h2 {
    margin-bottom: 1.5rem;
    color: #d63384;
}

.input-group {
    margin-bottom: 1rem;
}

.form-control {
    border-radius: 30px;
    padding: 0.75rem;
}

.btn-primary {
    border-radius: 30px;
    padding: 0.75rem;
    background-color: #d63384;
    border: none;
}

.btn-primary:hover {
    background-color: #b92b6c;
}

.icon-random {
    position: absolute;
    font-size: 4rem;
    color: rgba(214, 51, 132, 0.2);
    z-index: 0;
}

/* Icon positions and random rotations */
.icon1 {
    top: 10%;
    left: 5%;
    transform: rotate(15deg);
}

.icon2 {
    top: 20%;
    right: 10%;
    transform: rotate(-30deg);
}

.icon3 {
    bottom: 25%;
    left: 10%;
    transform: rotate(45deg);
}

.icon4 {
    bottom: 15%;
    right: 20%;
    transform: rotate(-60deg);
}

.icon5 {
    top: 35%;
    left: 70%;
    transform: rotate(90deg);
}

.icon6 {
    top: 5%;
    right: 40%;
    transform: rotate(-15deg);
}

.icon7 {
    bottom: 10%;
    left: 40%;
    transform: rotate(25deg);
}

.icon8 {
    top: 50%;
    left: 20%;
    transform: rotate(-45deg);
}

.icon9 {
    bottom: 40%;
    right: 5%;
    transform: rotate(75deg);
}

.icon10 {
    top: 70%;
    left: 85%;
    transform: rotate(10deg);
}

.icon11 {
    top: 15%;
    right: 5%;
    transform: rotate(-10deg);
}

.icon12 {
    bottom: 20%;
    left: 15%;
    transform: rotate(60deg);
}

.icon13 {
    top: 30%;
    right: 30%;
    transform: rotate(-50deg);
}

.icon14 {
    bottom: 5%;
    left: 50%;
    transform: rotate(120deg);
}

.icon15 {
    top: 40%;
    right: 80%;
    transform: rotate(-80deg);
}

/* Ensure icons don't overlap the form */
.icon-random i {
    pointer-events: none;
}

.custom-checkbox {
    text-align: left;
    margin-bottom: 1rem;
}

.links {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.links a {
    text-decoration: none;
    color: #d63384;
}

.links a:hover {
    text-decoration: underline;
}

p.text-danger {
    text-align: left;
}

.input-group {
    margin-top: 1rem;
    margin-bottom: 0;
    text-transform: capitalize;
}
