/* General Body Styles */
body {
    font-family: Arial, Helvetica, sans-serif;
    background-image: url('../images/patrick-tomasso-QMDap1TAu0g-unsplash.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Form Container */
form {
    width: 450px;
    background-color: rgba(128, 128, 128, 0.8);
    border-radius: 17px;
    border: 5px solid rgb(36, 34, 34);
    padding: 20px;
    box-shadow: 0 0 40px rgb(100, 181, 120);
    backdrop-filter: blur(5px);
}

/* General Form Elements */
form * {
    font-family: Arial, Helvetica, sans-serif;
    color: rgb(19, 17, 17);
    border: none;
    outline: none;
    letter-spacing: 1px;
}

/* Form Heading */
form h3 {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-weight: 600;
    line-height: 50px;
    text-align: center;
    font-size: 28px;
    margin: 0 0 20px;
}

/* Labels */
label {
    display: block;
    margin-top: 30px;
    font-size: 18px;
    font-weight: 600;
}

/* Input Fields */
input {
    margin-top: 10px;
    margin-bottom: 15px;
    padding: 11px 15px;
    font-size: 14px;
    font-weight: 300;
    width: calc(100% - 30px);
    border: 2px solid rgb(120, 119, 119);
    background-color: rgba(90, 94, 94, 0.8);
    border-radius: 10px;
    color: aliceblue;
}

/* Input Hover and Focus States */
input:hover,
input:focus {
    background: rgba(40, 39, 39, 0.8);
    transition: all 0.50s ease;
}

input:focus {
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2), 0px 5px 10px rgba(0, 0, 0, 0.2);
}

/* Placeholder Text */
::placeholder {
    color: aliceblue;
    opacity: 0.7;
}

/* Paragraph Text */
p {
    font-size: 16px;
    text-align: center;
    color: aliceblue;
    margin: 20px 0;
}

/* Buttons */
button {
    margin-top: 20px;
    width: 100%;
    background: rgba(0, 0, 0, 0.234);
    border: 2px solid rgb(56, 53, 53);
    border-radius: 5px;
    color: azure;
    padding: 12px 15px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.50s ease;
}

button:hover {
    background: rgba(95, 123, 95, 0.8);
}

button:focus {
    background: rgba(76, 102, 76, 0.8);
    box-shadow: 0px 0px 0px 2px rgba(33, 44, 33, 0.8);
}

/* Social Icons Container */
.social-icons {
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

/* Individual Social Icons */
.social-icon {
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 20px;
    box-shadow: 0px 4px 8px rgba(30, 30, 29, 0.5);
    transition: all 0.50s ease;
    color: aliceblue;
    background-color: rgba(0, 0, 0, 0.234);
    text-decoration: none;
}

.social-icon:hover {
    box-shadow: 0px 4px 14px rgba(17, 17, 17, 0.8);
}

.social-icon:focus {
    box-shadow: 0px 0px 0px 2px currentColor;
    transform: scale(0.9);
}