@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(to bottom, #ffffff, #df3f3f);
    color: #333;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.drop {
    position: relative;
    width: 600px;
    height: 555px;
    background-color: #E2F7FF;
    opacity: 0.90;
    border-radius: 52% 48% 33% 67% / 38% 45% 55% 62%;
    box-shadow: inset 25px 20px 20px rgba(0,0,0,0.05),
                20px 35px 20px rgba(0,0,0,0.05),
                20px 30px 30px rgba(0,0,0,0.05),
                inset -20px -20px 25px rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
    margin: 20px;
    display: none;
}

.drop.active {
    display: flex; 
}


.drop:hover {
    border-radius: 25%;
}

.content {
    text-align: center;
    padding: 30px;
}

.content h2 {
    margin-bottom: 20px;
    font-size: 1.8em;
}

.inputBox {
    position: relative;
    width: 225px;
    margin: 0 auto 20px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
    background: #fff;
    box-shadow: inset 2px 5px 10px rgba(0,0,0,0.1),
                inset -2px -5px 10px rgba(255,255,255,1),
                15px 15px 10px rgba(0,0,0,0.05),
                15px 10px 15px rgba(0,0,0,0.05);
}

.inputBox input, .inputBox select {
    border: none;
    outline: none;
    background: transparent;
    width: 100%;
    font-size: 1em;
    padding: 10px 15px;
    text-align: center;
}

.inputBox:last-child {
    width: 120px;
    background: transparent;
    color: white;
    cursor: pointer;
    transition: 0.5s;
}

.inputBox input[type="email"]:focus,
.inputBox input[type="password"]:focus,
.inputBox select:focus {
    box-shadow: 0 0 8px rgba(223, 63, 63, 0.5);
    border: 2px solid rgba(223, 63, 63, 0.7);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.power-container {
    background-color: #2E424D;
    width: 85%;
    margin-left: 16px;
    height: 19px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.power-container #power-point {
    background-color: #D73F40;
    width: 1%;
    height: 100%;
    border-radius: 5px;
    transition: 0.5s;
}

.power-container p{
    font-size: 13px;
    color: white;
}

form .inputBox:last-of-type:hover {
    width: 250px;
    transition: 0.5s;
    background: linear-gradient(to right, #ff4b2b, #d0264e);
    color: white;
}

form .inputBox:last-of-type:hover input[type="submit"] {
    color: white;
    transition: 0.5s;
}

p {
    font-size: 14px;
    margin-top: 5px;
}

p a {
    color: red;
    text-decoration: none;
}

p a:hover {
    text-decoration: underline;
}

.error-message {
    padding: 10px;
    background: #f8d7da;
    color: #700712;
    border-radius: 6px;
    font-size: 0.9em;
    margin-bottom: 10px;
    transition: opacity 0.5s ease;
}

