* {
box-sizing: border-box;
font-family: Arial, sans-serif;
}


body {
margin: 0;
background: #bca89f;
}

.container {
display: flex;
justify-content: center;
gap: 30px;
margin-top: 80px;
}

    .button-icon {
        font-size: 48px;
        margin-bottom: 15px;
        transition: transform 0.3s ease;
    }
    .option-box:hover .button-icon {
        transform: scale(1.1) rotate(5deg);
    }
    .option-box:hover .button-text {
        transform: scale(1.05);
    }

.option-box {
background: #3d251e;
width: 300px;
height: 200px;
border: none;
border-radius: 12px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
cursor: pointer;
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
font-size: 15px;
padding: 20px;
text-decoration: none;
color: rgb(255, 255, 255);
position: relative;
overflow: hidden;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.option-box::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #9b8c8c33;
        transform: translateY(100%);
        transition: transform 0.4s ease;
        z-index: 1;
    }

    .option-box:hover::before {
        transform: translateY(0);
    }

    .option-box:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }

    .option-box:active {
        transform: translateY(0);
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    .option-box .button-content {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
    }


.form-box {
background: white;
width: 350px;
margin: 60px auto;
padding: 25px;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}


.form-box label {
display: block;
margin-top: 15px;
}


.form-box input,
.form-box select {
width: 100%;
padding: 10px;
margin-top: 5px;
}


.form-box button {
margin-top: 20px;
width: 100%;
padding: 12px;
background: #0b3d91;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}


.admin-btn {
position: fixed;
bottom: 20px;
right: 20px;
background: #3d251e;
color: white;
padding: 12px 20px;
border-radius: 30px;
text-decoration: none;
}

.admin-btn:hover {
color: #050505;
background: #9b8c8c33;
}

