* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    background-color: none !important;
}


/* Form Styling */
.log-sign-form {
    width: 28.125rem; /* 450px */
    min-height: 25rem; /* 400px */
    margin: 3.125rem auto; /* 50px */
    padding: 1.25rem; /* 20px */
    background-color: rgb(255, 220, 149);
    border-radius: 0.625rem; /* 10px */
    box-shadow: -0.625rem 0.625rem 0.1875rem rgb(169, 222, 255); /* -10px 10px 3px */
}

button {
    background-color: rgb(255, 163, 179);
}

.log-sign-form .form-header {
    text-align: center;
    margin-bottom: 1.25rem; /* 20px */
}

.log-sign-form .form-header h2 {
    font-size: 2.1875rem; /* 35px */
    color: hotpink;
    margin-bottom: 0.625rem; /* 10px */
}

.log-sign-form .form-header p {
    font-size: 1.5625rem; /* 25px */
}

.log-sign-form input {
    display: block;
    width: calc(100% - 1.875rem); /* 100% - 30px */
    margin: 0.625rem auto; /* 10px */
    padding: 0.625rem; /* 10px */
    border: 0.0625rem solid #ccc; /* 1px */
    border-radius: 0.3125rem; /* 5px */
    font-size: 1.25rem; /* 20px */
    transition: all 0.3s ease;
}

.log-sign-form input:focus {
    border-color: hotpink;
    outline: none;
}

.log-sign-form button {
    display: block;
    width: calc(100% - 1.875rem); /* 100% - 30px */
    margin: 1.25rem auto; /* 20px */
    padding: 0.625rem; /* 10px */
    font-size: 1rem; /* 16px */
    font-weight: bold;
    color: white;
    background-color: rgb(255, 163, 179) !important;
    border: none;
    border-radius: 0.3125rem; /* 5px */
    cursor: pointer;
    transition: all 0.3s ease;
}

.log-sign-form button:hover {
    background-color: rgb(255, 143, 162);
    transform: translateY(-0.125rem); /* -2px */
}

.log-sign-form p {
    text-align: center;
    margin-top: 0.625rem; /* 10px */
}

.log-sign-form p a {
    color: #721c24;
    text-decoration: none;
    font-size: 1.875rem; /* 30px */
}

.log-sign-form p a:hover {
    color: rgb(216, 112, 162);
}

.form-sign-log-or-forgot-pw {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

.form-sign-log-or-forgot-pw:hover {
  transform: translateY(-3px) rotate(0.5deg); /* Tiny rotation */
}