﻿* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}

body {
    background: #eeeeee;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background: #ffffff;
    width: 100%;
    max-width: 400px;
    padding: 20px 20px 20px 20px;
    border-radius: 16px;
    position: relative;
    animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    position: absolute;
    top: 10px;
    right: 10px;
}

.logo img {
    width: 80px;
}

.client-img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

h1 {
    font-size: 30px;
    font-weight: normal;
    margin-bottom: 20px;
    text-align: left;
}

.input-group {
    margin-bottom: 10px;
}

input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    transition: 0.2s;
}

input:focus {
    border-color: #0088cc;
    outline: none;
    box-shadow: 0 0 0 2px rgba(74,144,226,0.15);
}

.btn {
	float: right;
	outline: none;
    width: 25%;
    padding: 12px;
    border: none;
    border-radius: 6px;
    background: #0088cc;
    color: white;
    font-size: 15px;
    cursor: pointer;
    transition: 0.2s;
    margin-top: 10px;
}

.btn:hover {
    background: #005795
}

.footer {
    position: absolute;
    text-align: center;
    font-size: 11px;
    left: 10px;
    bottom: 10px;
    color: #777;
}

@media (max-width: 420px) {
    .container {
        margin: 10px;
        padding: 25px 20px;
    }
}