/*

      __      __  _ _              _____
      \ \    / / | (_)            / ____|
       \ \  / /__| |_  __ _ _____| (___   ___ _ ____   __
        \ \/ / _ \ | |/ _` |______\___ \ / _ \ '__\ \ / /
         \  /  __/ | | (_| |      ____) |  __/ |   \ V /
          \/ \___|_|_|\__,_|     |_____/ \___|_|    \_/

                     CREATION DE LIAISON SQL
            www.velia-serv.fr | contact@hostinity.fr
			         www.connexion-sql.site






























*/


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #2d3032;
    color: #ffffff;
}

h2 {
    font-size: 2rem;
    color: #00a2ff;
    margin-bottom: 1rem;
}


form {
    background: #37393b;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 400px;
}

input[type='text'],
input[type='password'] {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 4px;
    border: 1px solid #9a5bff;
    background: #2d3032;
    color: #fff;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

button {
    width: 100%;
    padding: 1rem;
    background: #9a5bff;
    border: none;
    border-radius: 4px;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background: #111111;
	color: #9a5bff;
}

a{
    color : white;
    text-decoration: none;
}

p {
    margin-top: 1rem;
    color: #aaaaaa;
}

#passwordWarning {
    color: #ff6666;
}

#connectionString {
    background: #262626;
    color: #ddd;
    padding: 1rem;
    border-radius: 4px;
    margin-top: 1rem;
    width: 100%;
    word-wrap: break-word;
    cursor: pointer;
}

button:disabled {
    background: #555;
    color: #999;
    cursor: not-allowed;
}

.main-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.main-content img {
    width: 50%;
    height: auto;
    display: block;
}

.banner img {
    width: 25%;
    height: auto;
    display: block;
}