* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: url('../logo/buildings.png') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.wrapper {
    width: 100%;
    max-width: 600px;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.logo {
    margin-bottom: 10px;
}

.logo img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
    border: 2px solid #ffffff;
}

.name {
    font-weight: 600;
    font-size: 1.8rem;
    color: #007bff;
    margin-bottom: 20px;
}

.form-field {
    margin-bottom: 20px;
    position: relative;
}

.form-field input {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-size: 1rem;
    color: #333;
    background-color: #f9f9f9;
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.05);
    outline: none;
    transition: all 0.3s ease;
}

.form-field input:focus {
    border-color: #1fad3e;
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.1);
}

.btn {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 25px;
    background-color: #007bff;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.btn:hover {
    background-color: #ffc825;
}

a {
    text-decoration: none;
    font-size: 0.9rem;
    color: #03A9F4;
    margin-top: 20px;
    display: block;
}

a:hover {
    color: #039BE5;
}